feat(eslint): Rule "no-native-reassign"

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

View File

@ -147,7 +147,7 @@
- [ ] "no-multi-spaces"
- [ ] "no-multi-str"
- [ ] "no-multiple-empty-lines"
- [ ] "no-native-reassign"
- [X] "no-native-reassign"
- [ ] "no-negated-condition"
- [ ] "no-negated-in-lhs"
- [ ] "no-nested-ternary"

View File

@ -18,6 +18,9 @@
"no-catch-shadow": [
"off"
],
"no-native-reassign": [
"off"
],
"no-tabs": [
"error",
{