Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 948 Bytes

no-empty-function.md

File metadata and controls

24 lines (16 loc) · 948 Bytes

Disallow empty functions (no-empty-function)

Rule Details

This rule extends the base eslint/no-empty-function rule. It adds support for handling TypeScript specific code that would otherwise trigger the rule.

One example of valid TypeScript specific code that would otherwise trigger the no-empty-function rule is the use of parameter properties in constructor functions.

How to use

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

Options

See eslint/no-empty-function options.

Taken with ❤️ from ESLint core