Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 478 Bytes

no-extra-semi.md

File metadata and controls

17 lines (12 loc) · 478 Bytes

Disallow unnecessary semicolons (no-extra-semi)

Rule Details

This rule extends the base eslint/no-extra-semi rule.

How to use

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

Taken with ❤️ from ESLint core