feat(eslint): Rule "prefer-rest-params"

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

View File

@ -242,7 +242,7 @@
- [ ] "prefer-promise-reject-errors"
- [X] "prefer-reflect"
- [ ] "prefer-regex-literals"
- [ ] "prefer-rest-params"
- [X] "prefer-rest-params"
- [ ] "prefer-spread"
- [ ] "prefer-template"
- [X] "quote-props"

View File

@ -401,6 +401,9 @@
"prefer-reflect": [
"off"
],
"prefer-rest-params": [
"error"
],
"quote-props": [
"error",
"consistent-as-needed",