From 754c58e5fd32939ca581d5916792fb07f5cae87f Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 16 Jan 2017 20:44:24 -0800 Subject: [PATCH] Enfoce no more than two consecutive empty lines. --- .eslintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc b/.eslintrc index 2bc1ff9a..40e444f8 100644 --- a/.eslintrc +++ b/.eslintrc @@ -23,6 +23,7 @@ }, "rules": { + "no-multiple-empty-lines": ["error", {"max": 2, "maxEOF": 0, "maxBOF": 0}], "arrow-body-style": ["error", "as-needed"], "arrow-parens": "error", "arrow-spacing": "error",