fix(base): Enforce comma-spacing

BREAKING CHANGE: http://eslint.org/docs/rules/comma-spacing ([2])
This commit is contained in:
Ray Schamp 2016-10-24 10:44:04 -04:00
parent 324403c4cb
commit bd9e9fca67

View file

@ -72,6 +72,7 @@ module.exports = {
'brace-style': [2],
'camelcase': [2],
'comma-dangle': [2, 'never'],
'comma-spacing': [2],
'func-style': [2, 'expression'],
'indent': [2, 4],
'jsx-quotes': [2, 'prefer-double'],