fix(eslint): Make space-before-function-paren rule consistent with other rules (#1858)

This commit is contained in:
Mikael Korpela
2017-09-06 16:08:46 +03:00
committed by GitHub
parent 4320780d99
commit 2c05600db9

View File

@@ -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'