We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcad759 commit 7f97149Copy full SHA for 7f97149
1 file changed
.eslintrc.js
@@ -252,7 +252,7 @@ module.exports = {
252
'constructor-super': 2, // require `super()` calls in constructors
253
'generator-star-spacing': 1, // enforce consistent spacing around `*` operators in generator functions
254
'no-class-assign': 1, // disallow reassigning class members
255
- 'no-confusing-arrow': 1, // disallow arrow functions where they could be confused with comparisons
+ 'no-confusing-arrow': [1, {allowParens: true}], // disallow arrow functions where they could be confused with comparisons
256
'no-const-assign': 2, // disallow reassigning `const` variables
257
'no-dupe-class-members': 0, // disallow duplicate class members
258
'no-duplicate-imports': 1, // disallow duplicate module imports
0 commit comments