From 9673e0bb5a04d0d4b04333e33731514210a16664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Thu, 20 Oct 2022 17:09:31 +0200 Subject: [PATCH] Add maxBOF setting to no-multiple-empty-lines Fixes #182 --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index f92423cb..5d6c3317 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -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",