Remove eslint-rule 'no-shadow' (common variable names should be able to exist in different scopes)

This commit is contained in:
Albin Larsson 2018-02-05 23:22:20 +01:00
parent f67315e20c
commit ce1d5a60d6

View File

@ -8,6 +8,7 @@
"globals": { "Plyr": false, "jQuery": false }, "globals": { "Plyr": false, "jQuery": false },
"rules": { "rules": {
"no-const-assign": 1, "no-const-assign": 1,
"no-shadow": 0,
"no-this-before-super": 1, "no-this-before-super": 1,
"no-undef": 1, "no-undef": 1,
"no-unreachable": 1, "no-unreachable": 1,