Skip to content

Commit

Permalink
[eslint config] [base] [patch] camelcase: enable ignoreDestructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Aug 10, 2019
1 parent 6b5922c commit e257dee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/eslint-config-airbnb-base/rules/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ module.exports = {
'brace-style': ['error', '1tbs', { allowSingleLine: true }],

// require camel case names
// TODO: semver-major (eslint 5): add ignoreDestructuring: false option
camelcase: ['error', { properties: 'never' }],
camelcase: ['error', { properties: 'never', ignoreDestructuring: false }],

// enforce or disallow capitalization of the first letter of a comment
// https://eslint.org/docs/rules/capitalized-comments
Expand Down

0 comments on commit e257dee

Please sign in to comment.