diff options
-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", { |