From 33f1ddb4c534e0db605cca3d4060113b32c248ce Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 22 Feb 2016 14:30:23 -0800 Subject: [PATCH] =?UTF-8?q?Disable=20`no-confusing-arrow`=20until=20eslint?= =?UTF-8?q?=E2=80=99s=20bug=20is=20resolved.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bug: https://github.com/eslint/eslint/issues/5332 Closes #752. --- packages/eslint-config-airbnb/rules/es6.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-config-airbnb/rules/es6.js b/packages/eslint-config-airbnb/rules/es6.js index e88b2d50..ef50e0a7 100644 --- a/packages/eslint-config-airbnb/rules/es6.js +++ b/packages/eslint-config-airbnb/rules/es6.js @@ -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