Skip to content

Commit

Permalink
Disable no-confusing-arrow until eslint’s bug is resolved.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb authored and gilbox committed Mar 21, 2016
1 parent 6c5fb81 commit d16b7d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config-airbnb/rules/es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = {
'no-class-assign': 0,
// disallow arrow functions where they could be confused with comparisons
// http://eslint.org/docs/rules/no-confusing-arrow
'no-confusing-arrow': 2,
'no-confusing-arrow': 0,
// disallow modifying variables that are declared using const
'no-const-assign': 2,
// disallow symbol constructor
Expand Down

0 comments on commit d16b7d5

Please sign in to comment.