Browse Source

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 1 year ago
parent
commit
7bdfbc9533
1 changed files with 1 additions and 1 deletions
  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"
     }
 }