Rollup merge of #97286 - GuillaumeGomez:eslint-check-fn, r=notriddle
Add new eslint rule to prevent whitespace before function call paren It prevents `foo ()` basically. :) r? `@notriddle`
This commit is contained in:
commit
215722bd8d
1 changed files with 1 additions and 0 deletions
|
@ -46,5 +46,6 @@ module.exports = {
|
||||||
"error",
|
"error",
|
||||||
{ "beforeColon": false, "afterColon": true, "mode": "strict" }
|
{ "beforeColon": false, "afterColon": true, "mode": "strict" }
|
||||||
],
|
],
|
||||||
|
"func-call-spacing": ["error", "never"],
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue