From eb61fccc5e977db828cdff8015806d7668ed3905 Mon Sep 17 00:00:00 2001 From: AlexKVal Date: Sun, 23 Aug 2015 09:01:18 +0300 Subject: [PATCH] Fix for airbnb bug about 'no-undef' rule. --- .eslintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc b/.eslintrc index 90d6a7fecb..196eb5aa3e 100644 --- a/.eslintrc +++ b/.eslintrc @@ -34,6 +34,7 @@ "no-this-before-super": 2, "no-throw-literal": 0, "no-underscore-dangle": 0, + "no-undef": 2, "no-unused-vars": [2, { "vars": "all", "args": "none" }], "no-use-before-define": 0, "no-var": 2,