Enforce spacing of function parameters in eslint

This commit is contained in:
Alex Gleason 2020-04-14 16:47:35 -05:00
parent 2beb4d725f
commit 8a19b89c16
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
198 changed files with 518 additions and 516 deletions

View file

@ -59,6 +59,8 @@ module.exports = {
},
],
'comma-style': ['warn', 'last'],
'space-before-function-paren': ['error', 'never'],
'space-in-parens': ['error', 'never'],
'consistent-return': 'error',
'dot-notation': 'error',
eqeqeq: 'error',