From 12f08f80d8cd35e8b0995ed78afe85483894858d Mon Sep 17 00:00:00 2001 From: samreid Date: Fri, 26 Feb 2021 13:51:45 -0700 Subject: [PATCH] Increase max number of lines, see https://github.com/phetsims/phet-info/issues/156 --- eslint/format_eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint/format_eslintrc.js b/eslint/format_eslintrc.js index 4a07f359..f1ba4956 100644 --- a/eslint/format_eslintrc.js +++ b/eslint/format_eslintrc.js @@ -236,7 +236,7 @@ module.exports = { // disallow multiple empty lines, only one newline at the end, and no new lines at the beginning // https://eslint.org/docs/rules/no-multiple-empty-lines - 'no-multiple-empty-lines': [ 'error', { max: 1, maxBOF: 0, maxEOF: 0 } ], + 'no-multiple-empty-lines': [ 'error', { max: 2, maxBOF: 0, maxEOF: 1 } ], // disallow negated conditions // https://eslint.org/docs/rules/no-negated-condition