diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-05-02 06:57:57 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-05-02 06:57:57 +0200 |
commit | 3442ae7718679a4da8664bdbb561f746e0357203 (patch) | |
tree | 5ed661a5998ac91f309bb27cb5ae52dfb4178cca /.eslintrc.js | |
parent | 61de1c80cdc6c04e71fde07cc5028af503438134 (diff) | |
download | uxp-3442ae7718679a4da8664bdbb561f746e0357203.tar.gz |
Fix unsafe "instanceof" negations
https://github.com/MoonchildProductions/Pale-Moon/pull/1173
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index a7a8862926..3d3ad2b80a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -7,6 +7,9 @@ module.exports = { ], "rules": { "mozilla/import-globals": "warn", + + // No (!foo in bar) or (!object instanceof Class) + "no-unsafe-negation": "error", }, "env": { "es6": true |