Skip to content

Commit 5280a2a

Browse files
author
Ray Schamp
committed
fix(base): Enforce space-in-parens
There shouldn't be spaces in parens BREAKING CHANGE: http://eslint.org/docs/rules/space-in-parens ([2])
1 parent 39f5431 commit 5280a2a

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
@@ -119,7 +119,8 @@ module.exports = {
119119
'require-jsdoc': [1],
120120
'semi': [2, 'always'],
121121
'semi-spacing': [2],
122-
'space-before-function-paren': [2, 'always']
122+
'space-before-function-paren': [2, 'always'],
123+
'space-in-parens': [2]
123124
},
124125
env: {
125126
commonjs: true

0 commit comments

Comments
 (0)