Skip to content

Commit 3b2887b

Browse files
author
Ray Schamp
committed
fix(base): Enforce space-infix-ops
There should be spaces around infix operators BREAKING CHANGE: http://eslint.org/docs/rules/space-infix-ops ([2])
1 parent 5280a2a commit 3b2887b

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
@@ -120,7 +120,8 @@ module.exports = {
120120
'semi': [2, 'always'],
121121
'semi-spacing': [2],
122122
'space-before-function-paren': [2, 'always'],
123-
'space-in-parens': [2]
123+
'space-in-parens': [2],
124+
'space-infix-ops': [2]
124125
},
125126
env: {
126127
commonjs: true

0 commit comments

Comments
 (0)