aboutsummaryrefslogtreecommitdiff
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 33264eb..6bcc625 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -90,7 +90,7 @@
- [ ] "no-compare-neg-zero"
- [ ] "no-cond-assign"
- [ ] "no-confusing-arrow"
-- [ ] "no-console"
+- [X] "no-console"
- [ ] "no-const-assign"
- [ ] "no-constant-condition"
- [ ] "no-constructor-return"
diff --git a/src/rules/eslint.json b/src/rules/eslint.json
index 16c1d72..1065842 100644
--- a/src/rules/eslint.json
+++ b/src/rules/eslint.json
@@ -60,6 +60,12 @@
"no-catch-shadow": [
"off"
],
+ "no-console": [
+ "warn",
+ {
+ "allow": []
+ }
+ ],
"no-multi-spaces": [
"error",
{