Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 889 Bytes

func-call-spacing.md

File metadata and controls

32 lines (22 loc) · 889 Bytes
description
Require or disallow spacing between function identifiers and their invocations.

🛑 This file is source code, not the primary documentation location! 🛑

See https://typescript-eslint.io/rules/func-call-spacing for documentation.

Rule Details

This rule extends the base eslint/func-call-spacing rule. It 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