eslint bug no-spaced-func

This commit is contained in:
Timo Hocker 2020-04-28 10:45:37 +02:00
parent 0264c89199
commit bda3dc8083

View File

@ -147,6 +147,7 @@ module.exports = {
'consistent-this': 'error', 'consistent-this': 'error',
'eol-last': 'error', 'eol-last': 'error',
'func-call-spacing': ['error', 'always'], 'func-call-spacing': ['error', 'always'],
'no-spaced-func': 'off',
'func-name-matching': ['error', 'always'], 'func-name-matching': ['error', 'always'],
'func-names': ['error', 'always'], 'func-names': ['error', 'always'],
'func-style': ['error', 'declaration', { allowArrowFunctions: true }], 'func-style': ['error', 'declaration', { allowArrowFunctions: true }],