no-extra-semi
Disallow unnecessary semicolons.
✅
Extending "plugin:@typescript-eslint/recommended"
in an ESLint configuration enables this rule.
🛠
Some problems reported by this rule are automatically fixable by the --fix
ESLint command line option.
Examples
This rule extends the base eslint/no-extra-semi
rule.
It adds support for class properties.
How to Use
.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"no-extra-semi": "off",
"@typescript-eslint/no-extra-semi": "error"
}
};
Options
See eslint/no-extra-semi
options.
Taken with ❤️ from ESLint core