mirror of
https://github.com/scratchfoundation/eslint-config-scratch.git
synced 2025-08-28 22:40:13 -04:00
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:
parent
e17fc601e0
commit
0b0c0c5f08
1 changed files with 2 additions and 1 deletions
3
index.js
3
index.js
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue