From fea1ef2258f621554c93c1d7d5051233d6020d7a Mon Sep 17 00:00:00 2001 From: Javi Velasco Date: Sat, 5 Sep 2015 20:16:39 +0200 Subject: [PATCH] Disable warning for underscore in variables in ESLint --- .eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index f6937596..02b18ad0 100644 --- a/.eslintrc +++ b/.eslintrc @@ -7,6 +7,7 @@ "ecmaFeatures": { "jsx": true, + "templateStrings": true, "superInFunctions": false, "classes": false, "modules": [2] @@ -138,7 +139,7 @@ "no-undef": [2], "no-undef-init": [2], "no-undefined": [0], - "no-underscore-dangle": [2], + "no-underscore-dangle": [0], "no-unreachable": [2], "no-unused-expressions": [2], "no-unused-vars": [1, {