Disable undefined usage (#1262)

This commit is contained in:
toasted-nutbread 2021-01-17 12:20:06 -05:00 committed by GitHub
parent be590004fe
commit 8ec48456e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,6 +32,7 @@
"no-prototype-builtins": "error",
"no-shadow": ["error", {"builtinGlobals": false}],
"no-undef": "error",
"no-undefined": "error",
"no-underscore-dangle": ["error", {"allowAfterThis": true, "allowAfterSuper": false, "allowAfterThisConstructor": false}],
"no-unexpected-multiline": "error",
"no-unneeded-ternary": "error",