Simplify operator-linebreak configuration

Enabling `before` caused more code changes and it turns out our previous
configuration is already the default.
This commit is contained in:
Daniel Gasienica
2018-02-15 17:18:26 -05:00
parent db588997ac
commit f9d4cfb2ba

View File

@@ -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',
}
};