From 03127f73f3bfde9c541f0a221231c372949781f4 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 13 Feb 2020 23:14:21 +0400 Subject: feat(eslint): Rule "max-lines" 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 4c21c1d..301de1f 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -64,7 +64,7 @@ - [ ] "max-classes-per-file" - [ ] "max-depth" - [ ] "max-len" -- [ ] "max-lines" +- [X] "max-lines" - [ ] "max-lines-per-function" - [ ] "max-nested-callbacks" - [ ] "max-params" diff --git a/src/rules/default.json b/src/rules/default.json index 6e6a96a..016fd93 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -117,6 +117,9 @@ "exceptAfterSingleLine": false } ], + "max-lines": [ + "off" + ], "max-statements": [ "off" ], -- cgit v1.2.3