mirror of
https://github.com/scratchfoundation/eslint-config-scratch.git
synced 2025-08-28 22:40:13 -04:00
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:
parent
394896edfe
commit
d87cbd650d
1 changed files with 1 additions and 0 deletions
1
index.js
1
index.js
|
@ -117,6 +117,7 @@ module.exports = {
|
|||
}],
|
||||
'require-jsdoc': [1],
|
||||
'semi': [2, 'always'],
|
||||
'semi-spacing': [2],
|
||||
'space-before-function-paren': [2, 'always']
|
||||
},
|
||||
env: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue