summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/eslint.json6
2 files changed, 7 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index ec25ed2..1647231 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -111,7 +111,7 @@
- [ ] "no-empty-function"
- [ ] "no-empty-pattern"
- [ ] "no-eq-null"
-- [ ] "no-eval"
+- [X] "no-eval"
- [ ] "no-ex-assign"
- [ ] "no-extend-native"
- [ ] "no-extra-bind"
diff --git a/src/rules/eslint.json b/src/rules/eslint.json
index 30f12c6..ac29da4 100644
--- a/src/rules/eslint.json
+++ b/src/rules/eslint.json
@@ -69,6 +69,12 @@
"no-debugger": [
"error"
],
+ "no-eval": [
+ "error",
+ {
+ "allowIndirect": false
+ }
+ ],
"no-multi-spaces": [
"error",
{