1
0
Fork 0

Warn about unused variables

master
Anton 2024-02-26 20:19:58 +01:00
parent 43d7fba0ca
commit b7a7c59ff8
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@
"no-useless-catch": "warn",
// TODO: "no-undef": "warn",
"no-undef": "off",
"no-unused-vars": "off",
"no-unused-vars": ["warn", { "args": "none" } ],
"no-useless-escape": "off",
"no-control-regex" : "off"
}