From e5250261a7a7aa0febfb68ccfda94db45cebf226 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 14 Feb 2020 01:33:22 +0400 Subject: feat(eslint): Rule "no-implied-eval" Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/default.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index cbdf554..cd883eb 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -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", { -- cgit v1.2.3