fix(base): Enforce semi-spacing

Semicolons should have spaces after them, and not before them. Obviously.

BREAKING CHANGE: http://eslint.org/docs/rules/semi-spacing ([2])
This commit is contained in:
Ray Schamp 2016-10-24 11:10:57 -04:00
parent 394896edfe
commit d87cbd650d

View file

@ -117,6 +117,7 @@ module.exports = {
}],
'require-jsdoc': [1],
'semi': [2, 'always'],
'semi-spacing': [2],
'space-before-function-paren': [2, 'always']
},
env: {