Skip to content

Commit 530c49d

Browse files
committed
fix(eslint-config): disable avoidQuotes for object-shorthand
1 parent f725f34 commit 530c49d

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

  • packages/eslint-config/src/rules

packages/eslint-config/src/rules/es6.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,7 @@ module.exports = {
9898
'no-useless-constructor': 'error',
9999
'no-useless-rename': 'error',
100100
'no-var': 'error',
101-
'object-shorthand': [
102-
'error',
103-
'always',
104-
{
105-
avoidQuotes: true
106-
}
107-
],
101+
'object-shorthand': ['error', 'always'],
108102
'prefer-arrow-callback': [
109103
'error',
110104
{

0 commit comments

Comments
 (0)