From 06fb3c526f0cf15c71ddf1181442628253631c70 Mon Sep 17 00:00:00 2001 From: Julian Coy Date: Sun, 22 Mar 2020 14:15:56 -0400 Subject: [PATCH] Fixed up eslint configuration --- .eslintrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 249d459..950952e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -176,13 +176,13 @@ module.exports = { // wildcard inclusions { blankLine: 'always', - prev: ['multiline-block-like'], + prev: ['multiline-block-like', 'multiline-const', 'multiline-expression'], next: '*', }, { blankLine: 'always', prev: '*', - next: ['multiline-block-like', 'switch', 'return'], + next: ['multiline-block-like', 'multiline-const', 'multiline-expression', 'switch', 'return'], }, // specific exclusions for case statements