Przeglądaj źródła

eslintrc: enable no-redeclare but with builtinGlobals: false

Aarni Koskela 2 lat temu
rodzic
commit
3909c2b2a0
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      .eslintrc.js

+ 1 - 1
.eslintrc.js

@@ -27,7 +27,7 @@ module.exports = {
         "no-extra-semi": "error",
         "no-mixed-spaces-and-tabs": "error",
         "no-multi-spaces": "error",
-        "no-redeclare": "off",
+        "no-redeclare": ["error", {builtinGlobals: false}],
         "no-trailing-spaces": "error",
         "no-unused-vars": "off",
         "no-whitespace-before-property": "error",