Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 875 Bytes

File metadata and controls

28 lines (19 loc) · 875 Bytes

require or disallow semicolons instead of ASI (semi)

This rule enforces consistent use of semicolons after statements.

Rule Details

This rule extends the base eslint/semi rule. It supports all options and features of the base rule. This version adds support for numerous typescript features.

See also the @typescript-eslint/member-delimiter-style rule, which allows you to specify the delimiter for type and interface members.

How to use

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

Options

See eslint/semi options.

Taken with ❤️ from ESLint core