Skip to content

Commit

Permalink
fix(eslint-config): disable avoidQuotes for object-shorthand
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Oct 21, 2022
1 parent f725f34 commit 530c49d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/eslint-config/src/rules/es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,7 @@ module.exports = {
'no-useless-constructor': 'error',
'no-useless-rename': 'error',
'no-var': 'error',
'object-shorthand': [
'error',
'always',
{
avoidQuotes: true
}
],
'object-shorthand': ['error', 'always'],
'prefer-arrow-callback': [
'error',
{
Expand Down

0 comments on commit 530c49d

Please sign in to comment.