From 20efb0068601ee91b6ef2beb7cebb831f9bfec01 Mon Sep 17 00:00:00 2001 From: Ugo Stephant Date: Mon, 26 Oct 2020 12:13:03 +0100 Subject: [PATCH] fix(config): disable errors for multiline ternary expressions --- packages/eslint-config/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/eslint-config/index.js b/packages/eslint-config/index.js index fc2eabfc..cdded3ba 100644 --- a/packages/eslint-config/index.js +++ b/packages/eslint-config/index.js @@ -45,6 +45,7 @@ module.exports = { 'object-property-newline': OFF, 'no-empty': [ERROR, { allowEmptyCatch: true }], 'arrow-parens': [WARNING, 'as-needed'], + 'multiline-ternary': OFF, // ES6 fixes camelcase: OFF,