Skip to main content

no-extra-semi

Disallow unnecessary semicolons.

🔧

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"
}
};
Try this rule in the playground ↗

Options

See eslint/no-extra-semi options.

Resources

Taken with ❤️ from ESLint core