diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 13:51:02 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 13:51:02 +0300 |
commit | 19d9a1e74cd42d5857ac22a1c93aff6789343dad (patch) | |
tree | 24b84f01a940ccc00bec30ca4eb290efd2af9465 | |
parent | bdb1aa037fbba13eff334bd6639fb8b1935e9eda (diff) | |
download | eslint-config-19d9a1e74cd42d5857ac22a1c93aff6789343dad.tar.xz eslint-config-19d9a1e74cd42d5857ac22a1c93aff6789343dad.zip |
feat(eslint): Rule "no-native-reassign"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/eslint.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -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" diff --git a/src/rules/eslint.json b/src/rules/eslint.json index b1439c2..fe86c73 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -18,6 +18,9 @@ "no-catch-shadow": [ "off" ], + "no-native-reassign": [ + "off" + ], "no-tabs": [ "error", { |