From bda3dc8083b88dcdf96297ebfe4168419402feaf Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Tue, 28 Apr 2020 10:45:37 +0200 Subject: [PATCH] eslint bug no-spaced-func --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index b9d78fc..f4ac62a 100644 --- a/index.js +++ b/index.js @@ -147,6 +147,7 @@ module.exports = { 'consistent-this': 'error', 'eol-last': 'error', 'func-call-spacing': ['error', 'always'], + 'no-spaced-func': 'off', 'func-name-matching': ['error', 'always'], 'func-names': ['error', 'always'], 'func-style': ['error', 'declaration', { allowArrowFunctions: true }],