Skip to content

Commit

Permalink
docs(eslint-plugin): [naming-convention] correct typo in example (#1961)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkobits committed May 1, 2020
1 parent 80d934b commit 05476ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/docs/rules/naming-convention.md
Expand Up @@ -174,7 +174,7 @@ For example, if you provide the following config:
[
/* 1 */ { selector: 'default', format: ['camelCase'] },
/* 2 */ { selector: 'variable', format: ['snake_case'] },
/* 3 */ { selector: 'variable', type: ['boolean'], format: ['UPPER_CASE'] },
/* 3 */ { selector: 'variable', types: ['boolean'], format: ['UPPER_CASE'] },
/* 4 */ { selector: 'variableLike', format: ['PascalCase'] },
];
```
Expand Down

0 comments on commit 05476ca

Please sign in to comment.