From a474e5b084d519f074912245017ef817ca066855 Mon Sep 17 00:00:00 2001 From: azu Date: Sat, 18 Jun 2016 16:17:14 +0900 Subject: [PATCH] chore(eslint): avoid error no-multiple-empty-lines https://github.com/eslint/eslint/issues/6449 https://github.com/eslint/eslint/pull/6451 --- .eslintrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index b57583c7a..52c800769 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -124,7 +124,7 @@ module.exports = { "no-mixed-requires": "error", "no-multi-spaces": "error", "no-multi-str": "error", - "no-multiple-empty-lines": "error", + "no-multiple-empty-lines": "off", "no-native-reassign": "error", "no-negated-condition": "off", "no-nested-ternary": "error", @@ -228,4 +228,4 @@ module.exports = { "never" ] } -}; \ No newline at end of file +};