diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 13:51:40 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 13:51:40 +0300 |
commit | 3f826d2ecbc02339d9f128d8f5c867c07354ecb4 (patch) | |
tree | 8334c697b2a3d34aff8333fb215ad0117499b82f /src/rules/eslint.json | |
parent | 19d9a1e74cd42d5857ac22a1c93aff6789343dad (diff) | |
download | eslint-config-3f826d2ecbc02339d9f128d8f5c867c07354ecb4.tar.xz eslint-config-3f826d2ecbc02339d9f128d8f5c867c07354ecb4.zip |
feat(eslint): Rule "no-negated-in-lhs"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/rules/eslint.json')
-rw-r--r-- | src/rules/eslint.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rules/eslint.json b/src/rules/eslint.json index fe86c73..7ba01cb 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -21,6 +21,9 @@ "no-native-reassign": [ "off" ], + "no-negated-in-lhs": [ + "off" + ], "no-tabs": [ "error", { |