eslint: enforce spacing of imports (and infix ops)

This commit is contained in:
Alex Gleason 2022-05-11 12:40:34 -05:00
parent 2ebf735884
commit ae01b845de
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
82 changed files with 109 additions and 107 deletions

View file

@ -65,7 +65,9 @@ module.exports = {
],
'comma-style': ['warn', 'last'],
'space-before-function-paren': ['error', 'never'],
'space-infix-ops': 'error',
'space-in-parens': ['error', 'never'],
'keyword-spacing': 'error',
'consistent-return': 'error',
'dot-notation': 'error',
eqeqeq: 'error',