feat(eslint): Rule "no-extra-bind"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-14 01:32:01 +04:00
parent 3f21bbb936
commit 0fb0f57097
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -114,7 +114,7 @@
- [X] "no-eval" - [X] "no-eval"
- [ ] "no-ex-assign" - [ ] "no-ex-assign"
- [X] "no-extend-native" - [X] "no-extend-native"
- [ ] "no-extra-bind" - [X] "no-extra-bind"
- [ ] "no-extra-boolean-cast" - [ ] "no-extra-boolean-cast"
- [ ] "no-extra-label" - [ ] "no-extra-label"
- [ ] "no-extra-parens" - [ ] "no-extra-parens"

View File

@ -239,6 +239,9 @@
"no-extend-native": [ "no-extend-native": [
"error" "error"
], ],
"no-extra-bind": [
"error"
],
"no-extra-semi": [ "no-extra-semi": [
"error" "error"
], ],