We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1346867 commit ae3f937Copy full SHA for ae3f937
index.js
@@ -19,8 +19,8 @@ module.exports = {
19
// in the right direction
20
'for-direction': 'error',
21
22
- // Disallow unnecessary parentheses
23
- 'no-extra-parens': 'error',
+ // Allow unnecessary parentheses
+ 'no-extra-parens': 'off',
24
25
// Disallow template literal placeholder syntax in regular string
26
'no-template-curly-in-string': 'error',
@@ -115,8 +115,6 @@ module.exports = {
115
// Disallow empty block statements
116
'no-empty': ['error', { allowEmptyCatch: true }],
117
118
- 'no-extra-parens': 'off',
119
-
120
// Disallow `if` statements as the only statement in `else` blocks
121
'no-lonely-if': 'error',
122
0 commit comments