feat(eslint): Rule "no-sequences"

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

View File

@ -180,7 +180,7 @@
- [X] "no-script-url"
- [ ] "no-self-assign"
- [X] "no-self-compare"
- [ ] "no-sequences"
- [X] "no-sequences"
- [ ] "no-setter-return"
- [ ] "no-shadow"
- [ ] "no-shadow-restricted-names"

View File

@ -317,6 +317,9 @@
"no-self-compare": [
"error"
],
"no-sequences": [
"error"
],
"no-spaced-func": [
"off"
],