Skip to content

Commit

Permalink
Merge pull request #253 from standard/no-multiple-empty-lines-bof
Browse files Browse the repository at this point in the history
Add maxBOF setting to no-multiple-empty-lines
  • Loading branch information
LinusU committed Nov 18, 2022
2 parents bcd0199 + 9673e0b commit 80b9734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.json
Expand Up @@ -135,7 +135,7 @@
"no-mixed-spaces-and-tabs": "error",
"no-multi-spaces": "error",
"no-multi-str": "error",
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }],
"no-multiple-empty-lines": ["error", { "max": 1, "maxBOF": 0, "maxEOF": 0 }],
"no-new": "error",
"no-new-func": "error",
"no-new-object": "error",
Expand Down

0 comments on commit 80b9734

Please sign in to comment.