From f9d4cfb2ba0d8aa308b0923bbe6066ea34cb97bd Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Thu, 15 Feb 2018 17:18:26 -0500 Subject: [PATCH] Simplify `operator-linebreak` configuration Enabling `before` caused more code changes and it turns out our previous configuration is already the default. --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 4671b5c249..55d953c9a0 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -38,6 +38,6 @@ module.exports = { // though we have a logger, we still remap console to log to disk 'no-console': 'off', - 'operator-linebreak': ["error", "after", { "overrides": { '?': 'before', ':': 'before' } }] + 'operator-linebreak': 'error', } };