Skip to content

Commit 0b0c0c5

Browse files
author
Ray Schamp
committed
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])
1 parent e17fc60 commit 0b0c0c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ module.exports = {
122122
'space-before-function-paren': [2, 'always'],
123123
'space-in-parens': [2],
124124
'space-infix-ops': [2],
125-
'space-unary-ops': [2]
125+
'space-unary-ops': [2],
126+
'spaced-comment': [2]
126127
},
127128
env: {
128129
commonjs: true

0 commit comments

Comments
 (0)