File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ module.exports = {
252252 'constructor-super' : 2 , // require `super()` calls in constructors
253253 'generator-star-spacing' : 1 , // enforce consistent spacing around `*` operators in generator functions
254254 'no-class-assign' : 1 , // disallow reassigning class members
255- 'no-confusing-arrow' : 1 , // disallow arrow functions where they could be confused with comparisons
255+ 'no-confusing-arrow' : [ 1 , { allowParens : true } ] , // disallow arrow functions where they could be confused with comparisons
256256 'no-const-assign' : 2 , // disallow reassigning `const` variables
257257 'no-dupe-class-members' : 0 , // disallow duplicate class members
258258 'no-duplicate-imports' : 1 , // disallow duplicate module imports
You can’t perform that action at this time.
0 commit comments