Skip to content

Commit

Permalink
Merge pull request #9 from derniercri/space-after-async
Browse files Browse the repository at this point in the history
force space after async
  • Loading branch information
iRyusa authored Jan 23, 2019
2 parents 0949fc0 + f01ab6d commit faa0582
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ module.exports = {
'operator-assignment': 0,
'padded-blocks': [0, { classes: 'always', switches: 'never' }],
'quote-props': [2, 'as-needed'],
'space-before-function-paren': [2, 'never'],
'space-before-function-paren': [2, {
'anonymous': 'never',
'named': 'never',
'asyncArrow': 'always',
}],
'space-in-parens': [2, 'never'],
'vars-on-top': 0,
camelcase: 0,
Expand Down

0 comments on commit faa0582

Please sign in to comment.