Explorar o código

Disable unused vars warning

Because I keep demo programs, and the true input in the files, and
switch between them, this is getting a little annoying. Plus, VS Code
already shows me when a variable is unused.
ApisNecros hai 1 ano
pai
achega
7bdfbc9533
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      .eslintrc.json

+ 1 - 1
.eslintrc.json

@@ -10,7 +10,7 @@
         "no-underscore-dangle": "off",
         "linebreak-style": ["error", "unix"],
         "no-console": "off",
-        "no-unused-vars": "warn",
+        "no-unused-vars": "off",
         "no-param-reassign": "off"
     }
 }