Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
fix(eslint): Make space-before-function-paren rule consistent with …
Browse files Browse the repository at this point in the history
…other rules (#1858)
  • Loading branch information
simison authored Sep 6, 2017
1 parent 4320780 commit 2c05600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = {
'one-var': [0, 'never'],
'one-var-declaration-per-line': [2, 'always'],
'padded-blocks': 0,
'space-before-function-paren': ['error', {
'space-before-function-paren': [2, {
'anonymous': 'always',
'named': 'never',
'asyncArrow': 'always'
Expand Down

0 comments on commit 2c05600

Please sign in to comment.