From 764160f38c57dacd6639d65a3e8b99ccddbb8f4a Mon Sep 17 00:00:00 2001 From: LouisLam Date: Tue, 10 Aug 2021 21:44:29 +0800 Subject: [PATCH] add eslint: space-before-function-paren --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index dcd4215c5..9e0eb4574 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -36,6 +36,7 @@ module.exports = { "no-multi-spaces": ["error", { ignoreEOLComments: true, }], + "space-before-function-paren": ["error", "always"], "curly": "error", "object-curly-spacing": ["error", "always"], "object-curly-newline": "off",