feat(eslint): Rule "no-negated-in-lhs"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 14:51:40 +04:00
parent 19d9a1e74c
commit 3f826d2ecb
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -149,7 +149,7 @@
- [ ] "no-multiple-empty-lines"
- [X] "no-native-reassign"
- [ ] "no-negated-condition"
- [ ] "no-negated-in-lhs"
- [X] "no-negated-in-lhs"
- [ ] "no-nested-ternary"
- [ ] "no-new"
- [ ] "no-new-func"

View File

@ -21,6 +21,9 @@
"no-native-reassign": [
"off"
],
"no-negated-in-lhs": [
"off"
],
"no-tabs": [
"error",
{