improve space-before-function-paren

This commit is contained in:
LouisLam 2021-08-10 21:59:15 +08:00
parent 3227a2660b
commit e0ae9a9e73

View file

@ -36,7 +36,11 @@ module.exports = {
"no-multi-spaces": ["error", {
ignoreEOLComments: true,
}],
"space-before-function-paren": ["error", "always"],
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}],
"curly": "error",
"object-curly-spacing": ["error", "always"],
"object-curly-newline": "off",