summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/default.json3
2 files changed, 4 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index 7be4e6b..1721ef0 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -68,7 +68,7 @@
- [ ] "max-lines-per-function"
- [ ] "max-nested-callbacks"
- [ ] "max-params"
-- [ ] "max-statements"
+- [X] "max-statements"
- [ ] "max-statements-per-line"
- [X] "multiline-comment-style"
- [ ] "multiline-ternary"
diff --git a/src/rules/default.json b/src/rules/default.json
index b8c2521..8fdf66e 100644
--- a/src/rules/default.json
+++ b/src/rules/default.json
@@ -99,6 +99,9 @@
"lines-around-directive": [
"off"
],
+ "max-statements": [
+ "off"
+ ],
"multiline-comment-style": [
"error",
"starred-block"