diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-17 15:21:30 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 14:53:02 -0500 |
commit | c0d91bffc461c61af9d35aecb7c92e15648382b2 (patch) | |
tree | 4d74f1d6b08356ab96871b5278cd511ff33b0c2a /.eslintrc.json | |
parent | b3212d776e3f6d735bc9d67acbebc28b7f061ba8 (diff) |
Add no-shadow
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index b21c00f4..cfee7be8 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -26,6 +26,7 @@ "no-const-assign": "error", "no-constant-condition": "off", "no-global-assign": "error", + "no-shadow": ["error", {"builtinGlobals": false}], "no-undef": "error", "no-unneeded-ternary": "error", "no-unused-vars": ["error", {"vars": "local", "args": "after-used", "argsIgnorePattern": "^_", "caughtErrors": "none"}], |