1
0
Fork 0

Warn about undefined variables

master
Anton 2024-03-08 13:35:09 +01:00
parent a496a7db60
commit 2325d4183c
1 changed files with 1 additions and 2 deletions

View File

@ -154,8 +154,7 @@ module.exports = {
"no-unreachable": "warn",
"no-cond-assign": "warn",
"no-useless-catch": "warn",
// TODO: "no-undef": "warn",
"no-undef": "off",
"no-undef": "warn",
"no-unused-vars": ["warn", { "args": "none" } ],
"no-useless-escape": "off",
"no-control-regex" : "off"