feat(eslint): Rule "no-implied-eval"

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

View File

@ -125,7 +125,7 @@
- [ ] "no-global-assign"
- [ ] "no-implicit-coercion"
- [ ] "no-implicit-globals"
- [ ] "no-implied-eval"
- [X] "no-implied-eval"
- [ ] "no-import-assign"
- [ ] "no-inline-comments"
- [ ] "no-inner-declarations"

View File

@ -245,6 +245,9 @@
"no-extra-semi": [
"error"
],
"no-implied-eval": [
"error"
],
"no-magic-numbers": [
"warn",
{