1
Fork 0

Add new eslint rule "space-before-function-paren"

This commit is contained in:
Guillaume Gomez 2022-05-25 13:55:09 +02:00
parent 231b47b2b9
commit 6c7156d488
6 changed files with 8 additions and 7 deletions

View file

@ -48,5 +48,6 @@ module.exports = {
],
"func-call-spacing": ["error", "never"],
"space-infix-ops": "error",
"space-before-function-paren": ["error", "never"],
}
};