Skip to content

Commit

Permalink
feat(no-confusing-arrow): allow parens
Browse files Browse the repository at this point in the history
  • Loading branch information
glebec committed Dec 23, 2016
1 parent dcad759 commit 7f97149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ module.exports = {
'constructor-super': 2, // require `super()` calls in constructors
'generator-star-spacing': 1, // enforce consistent spacing around `*` operators in generator functions
'no-class-assign': 1, // disallow reassigning class members
'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
'no-const-assign': 2, // disallow reassigning `const` variables
'no-dupe-class-members': 0, // disallow duplicate class members
'no-duplicate-imports': 1, // disallow duplicate module imports
Expand Down

0 comments on commit 7f97149

Please sign in to comment.