mirror of https://github.com/espruino/BangleApps
Warn about undefined variables
parent
a496a7db60
commit
2325d4183c
|
@ -154,8 +154,7 @@ module.exports = {
|
||||||
"no-unreachable": "warn",
|
"no-unreachable": "warn",
|
||||||
"no-cond-assign": "warn",
|
"no-cond-assign": "warn",
|
||||||
"no-useless-catch": "warn",
|
"no-useless-catch": "warn",
|
||||||
// TODO: "no-undef": "warn",
|
"no-undef": "warn",
|
||||||
"no-undef": "off",
|
|
||||||
"no-unused-vars": ["warn", { "args": "none" } ],
|
"no-unused-vars": ["warn", { "args": "none" } ],
|
||||||
"no-useless-escape": "off",
|
"no-useless-escape": "off",
|
||||||
"no-control-regex" : "off"
|
"no-control-regex" : "off"
|
||||||
|
|
Loading…
Reference in New Issue