aboutsummaryrefslogtreecommitdiff
path: root/src/rules/default.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-13 21:51:40 +0300
committerValentin Popov <info@valentineus.link>2020-02-13 21:51:40 +0300
commit2bd897000434fd05ba2b136b800a7bee7099f2e8 (patch)
treefaa3e204bb1ca7ab8df1758e252ff9666e53e3d8 /src/rules/default.json
parente914d9f80e3bdde324a0c62cb144739be57c394f (diff)
downloadeslint-config-2bd897000434fd05ba2b136b800a7bee7099f2e8.tar.xz
eslint-config-2bd897000434fd05ba2b136b800a7bee7099f2e8.zip
feat(eslint): Rule "no-multiple-empty-lines"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/rules/default.json')
-rw-r--r--src/rules/default.json8
1 files changed, 8 insertions, 0 deletions
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"
],