diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 00:33:22 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 00:33:22 +0300 |
commit | e5250261a7a7aa0febfb68ccfda94db45cebf226 (patch) | |
tree | c6d16cd9dd49944ca218494a53c57b82861c9e27 | |
parent | 0fb0f570970acc836cb8db6aedb491d418a4ae19 (diff) | |
download | eslint-config-e5250261a7a7aa0febfb68ccfda94db45cebf226.tar.xz eslint-config-e5250261a7a7aa0febfb68ccfda94db45cebf226.zip |
feat(eslint): Rule "no-implied-eval"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -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" diff --git a/src/rules/default.json b/src/rules/default.json index 6738853..a0527c9 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -245,6 +245,9 @@ "no-extra-semi": [ "error" ], + "no-implied-eval": [ + "error" + ], "no-magic-numbers": [ "warn", { |