fix(base): Enforce spaced-comment

Comments should have a space after the opening comment character

BREAKING CHANGE: http://eslint.org/docs/rules/spaced-comment ([2])
This commit is contained in:
Ray Schamp 2016-10-24 11:24:13 -04:00
parent e17fc601e0
commit 0b0c0c5f08

View file

@ -122,7 +122,8 @@ module.exports = {
'space-before-function-paren': [2, 'always'],
'space-in-parens': [2],
'space-infix-ops': [2],
'space-unary-ops': [2]
'space-unary-ops': [2],
'spaced-comment': [2]
},
env: {
commonjs: true