From ce1d5a60d61e687d9d4fb16165649a524d55a45b Mon Sep 17 00:00:00 2001 From: Albin Larsson Date: Mon, 5 Feb 2018 23:22:20 +0100 Subject: [PATCH] Remove eslint-rule 'no-shadow' (common variable names should be able to exist in different scopes) --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index fba3d471..63fefe4d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,6 +8,7 @@ "globals": { "Plyr": false, "jQuery": false }, "rules": { "no-const-assign": 1, + "no-shadow": 0, "no-this-before-super": 1, "no-undef": 1, "no-unreachable": 1,