diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-17 15:30:41 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 14:53:02 -0500 |
commit | 9dd779836c34c6877c9736d937c3c4109b173b18 (patch) | |
tree | 56fe2b3ae309ead176db8fbb1d6ac7a83bd2ec4c /.eslintrc.json | |
parent | f1ccd5280635f9528b2cfe4629222c627065781c (diff) |
Add "no-prototype-builtins"
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 2dc63e80..fcc6995b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -27,6 +27,7 @@ "no-constant-condition": "off", "no-global-assign": "error", "no-param-reassign": "off", + "no-prototype-builtins": "error", "no-shadow": ["error", {"builtinGlobals": false}], "no-undef": "error", "no-unneeded-ternary": "error", |