Skip to content

Commit

Permalink
fix(eslint-config): ignore non-camelcase in properties
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepolischuk committed Jan 25, 2024
1 parent 13c0600 commit cf835c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config/js.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = {
semi: ['error', 'never'],
'comma-dangle': ['error', 'never'],
'eol-last': ['error', 'always'],
camelcase: ['error', {ignoreDestructuring: true}],
camelcase: ['error', {properties: 'never', ignoreDestructuring: true}],
eqeqeq: ['error', 'always', {null: 'ignore'}],
'prefer-const': ['error', {ignoreReadBeforeAssign: true}],
'prefer-spread': 'error',
Expand Down

0 comments on commit cf835c3

Please sign in to comment.