aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-01-17 12:20:06 -0500
committerGitHub <noreply@github.com>2021-01-17 12:20:06 -0500
commit8ec48456e6d73e10239469c39e7862365db43739 (patch)
tree7aa3481165d082670506f926ec02b96734d6e897 /.eslintrc.json
parentbe590004fee5bbbbaefa8a11ddecdb4fca6f7da7 (diff)
Disable undefined usage (#1262)
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json1
1 files changed, 1 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index 0f854e76..5d0c216b 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -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",