Skip to content

Commit

Permalink
fix(eslint-config): disable naming convention for object literals
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Nov 14, 2022
1 parent c8d2dc7 commit 5df1499
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/eslint-config/src/rules/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ module.exports = {
'PascalCase'
],
modifiers: ['static']
},
{
selector: ['objectLiteralProperty', 'objectLiteralMethod'],
format: null,
modifiers: ['requiresQuotes']
}
],
'@typescript-eslint/no-dynamic-delete': 'error',
Expand Down

0 comments on commit 5df1499

Please sign in to comment.