fix(base): Enforce object-curly-spacing

Objects shouldn't have spaces after the opening curly or before the closing one.

BREAKING CHANGE: http://eslint.org/docs/rules/object-curly-spacing ([2])
This commit is contained in:
Ray Schamp 2016-10-24 11:13:27 -04:00
parent d87cbd650d
commit 39f5431a30

View file

@ -103,8 +103,9 @@ module.exports = {
}],
'no-negated-condition': [1],
'no-tabs': [2],
'no-trailing-spaces': [2, { skipBlankLines: true }],
'no-trailing-spaces': [2, {skipBlankLines: true}],
'no-unneeded-ternary': [2],
'object-curly-spacing': [2],
'object-property-newline': [2, {
allowMultiplePropertiesPerLine: true
}],