Add new eslint rule to prevent whitespace before function call paren

This commit is contained in:
Guillaume Gomez 2022-05-22 22:29:44 +02:00
parent 0a437b2ca0
commit 399299fba2

View file

@ -46,5 +46,6 @@ module.exports = {
"error",
{ "beforeColon": false, "afterColon": true, "mode": "strict" }
],
"func-call-spacing": ["error", "never"],
}
};