Skip to content

Commit aa53a78

Browse files
committed
Fix @typescript-eslint/naming-convention config
1 parent 16e3725 commit aa53a78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,9 @@ module.exports = {
281281
'@typescript-eslint/naming-convention': [
282282
'error',
283283
{
284-
// selector: 'default',
284+
// selector: ['variableLike', 'memberLike', 'property', 'method'],
285285
// Note: Leaving out `parameter` and `typeProperty` because of the mentioned known issues.
286-
selector: ['variable', 'function', 'classProperty', 'objectLiteralProperty', 'parameterProperty', 'classMethod', 'objectLiteralMethod', 'typeMethod', 'accessor', 'enumMember', 'class', 'interface', 'typeAlias', 'enum', 'typeParameter'],
286+
selector: ['variable', 'function', 'classProperty', 'objectLiteralProperty', 'parameterProperty', 'classMethod', 'objectLiteralMethod', 'typeMethod', 'accessor', 'enumMember'],
287287
format: [
288288
'strictCamelCase'
289289
],

0 commit comments

Comments
 (0)