feat(eslint): Rule "no-new-wrappers"

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

View File

@ -156,7 +156,7 @@
- [ ] "no-new-object"
- [ ] "no-new-require"
- [ ] "no-new-symbol"
- [ ] "no-new-wrappers"
- [X] "no-new-wrappers"
- [ ] "no-obj-calls"
- [ ] "no-octal"
- [ ] "no-octal-escape"

View File

@ -299,6 +299,9 @@
"no-new-func": [
"error"
],
"no-new-wrappers": [
"error"
],
"no-spaced-func": [
"off"
],