Disable no-confusing-arrow until eslint’s bug is resolved.

bug: https://github.com/eslint/eslint/issues/5332

Closes #752.
This commit is contained in:
Jordan Harband
2016-02-22 14:30:23 -08:00
parent f12b2a195a
commit 33f1ddb4c5

View File

@@ -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