You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/eslint-plugin/docs/rules/explicit-member-accessibility.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -59,8 +59,7 @@ If you are working on a codebase within which you lint non-TypeScript code (i.e.
59
59
60
60
### `accessibility`
61
61
62
-
This rule in it's default state requires no configuration and will enforce that every class member has an accessibility modifier. If you would like to allow for some implicit public members then you have the following options:
63
-
A possible configuration could be:
62
+
This rule in its default state requires no configuration and will enforce that every class member has an accessibility modifier. If you would like to allow for some implicit public members then you have the following options:
64
63
65
64
```ts
66
65
{
@@ -75,6 +74,8 @@ A possible configuration could be:
75
74
}
76
75
```
77
76
77
+
Note the above is an example of a possible configuration you could use - it is not the default configuration.
78
+
78
79
The following patterns are considered incorrect code if no options are provided:
0 commit comments