diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 8 |
2 files changed, 9 insertions, 1 deletions
@@ -146,7 +146,7 @@ - [ ] "no-multi-assign" - [X] "no-multi-spaces" - [ ] "no-multi-str" -- [ ] "no-multiple-empty-lines" +- [X] "no-multiple-empty-lines" - [X] "no-native-reassign" - [ ] "no-negated-condition" - [X] "no-negated-in-lhs" diff --git a/src/rules/default.json b/src/rules/default.json index 7e77f6e..d9d03f4 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -131,6 +131,14 @@ "ignoreEOLComments": false } ], + "no-multiple-empty-lines": [ + "error", + { + "max": 1, + "maxBOF": 1, + "maxEOF": 1 + } + ], "no-native-reassign": [ "off" ], |