Skip to content

Commit

Permalink
Enable eslint space-before-function-paren (#30078)
Browse files Browse the repository at this point in the history
Anonymous are set to ignore as I [couldn't
decide](#30077 (comment)).
No current violations.

Rule docs: https://eslint.style/rules/js/space-before-function-paren
  • Loading branch information
silverwind authored Mar 25, 2024
1 parent a9a5734 commit bcb151c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ rules:
"@stylistic/js/semi-spacing": [2, {before: false, after: true}]
"@stylistic/js/semi-style": [2, last]
"@stylistic/js/space-before-blocks": [2, always]
"@stylistic/js/space-before-function-paren": [0]
"@stylistic/js/space-before-function-paren": [2, {anonymous: ignore, named: never, asyncArrow: always}]
"@stylistic/js/space-in-parens": [2, never]
"@stylistic/js/space-infix-ops": [2]
"@stylistic/js/space-unary-ops": [2]
Expand Down

0 comments on commit bcb151c

Please sign in to comment.