require or disallow spacing between function identifiers and their invocations (func-call-spacing)

When calling a function, developers may insert optional whitespace between the function’s name and the parentheses that invoke it. This rule requires or disallows spaces between the function name and the opening parenthesis that calls it.

Rule Details

This rule extends the base eslint/func-call-spacing rule. It supports all options and features of the base rule. This version adds support for generic type parameters on function calls.

How to use

{
  // note you must disable the base rule as it can report incorrect errors
  "func-call-spacing": "off",
  "@typescript-eslint/func-call-spacing": ["error"]
}

Options

See eslint/func-call-spacing options.

Taken with ❤️ from ESLint core