From aee723813ec47ccac0a165cf1bc9674f6257b609 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Wed, 8 Jan 2020 08:53:51 +1300 Subject: [PATCH] docs(eslint-plugin): explicit-member-accessibility (#1409) --- .../docs/rules/explicit-member-accessibility.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/eslint-plugin/docs/rules/explicit-member-accessibility.md b/packages/eslint-plugin/docs/rules/explicit-member-accessibility.md index 3a10696fa11..9b148d95c85 100644 --- a/packages/eslint-plugin/docs/rules/explicit-member-accessibility.md +++ b/packages/eslint-plugin/docs/rules/explicit-member-accessibility.md @@ -59,8 +59,7 @@ If you are working on a codebase within which you lint non-TypeScript code (i.e. ### `accessibility` -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: -A possible configuration could be: +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: ```ts { @@ -75,6 +74,8 @@ A possible configuration could be: } ``` +Note the above is an example of a possible configuration you could use - it is not the default configuration. + The following patterns are considered incorrect code if no options are provided: ```ts