Skip to content

Commit 39f5431

Browse files
author
Ray Schamp
committed
fix(base): Enforce object-curly-spacing
Objects shouldn't have spaces after the opening curly or before the closing one. BREAKING CHANGE: http://eslint.org/docs/rules/object-curly-spacing ([2])
1 parent d87cbd6 commit 39f5431

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ module.exports = {
103103
}],
104104
'no-negated-condition': [1],
105105
'no-tabs': [2],
106-
'no-trailing-spaces': [2, { skipBlankLines: true }],
106+
'no-trailing-spaces': [2, {skipBlankLines: true}],
107107
'no-unneeded-ternary': [2],
108+
'object-curly-spacing': [2],
108109
'object-property-newline': [2, {
109110
allowMultiplePropertiesPerLine: true
110111
}],

0 commit comments

Comments
 (0)