diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 00:32:01 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 00:32:01 +0300 |
commit | 0fb0f570970acc836cb8db6aedb491d418a4ae19 (patch) | |
tree | 2c19da3d1e768cadebbb9c3b13295285ee70a227 | |
parent | 3f21bbb9363671b9f202107568d9cc2dfa325b58 (diff) | |
download | eslint-config-0fb0f570970acc836cb8db6aedb491d418a4ae19.tar.xz eslint-config-0fb0f570970acc836cb8db6aedb491d418a4ae19.zip |
feat(eslint): Rule "no-extra-bind"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -114,7 +114,7 @@ - [X] "no-eval" - [ ] "no-ex-assign" - [X] "no-extend-native" -- [ ] "no-extra-bind" +- [X] "no-extra-bind" - [ ] "no-extra-boolean-cast" - [ ] "no-extra-label" - [ ] "no-extra-parens" diff --git a/src/rules/default.json b/src/rules/default.json index 8750343..6738853 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -239,6 +239,9 @@ "no-extend-native": [ "error" ], + "no-extra-bind": [ + "error" + ], "no-extra-semi": [ "error" ], |