Skip to main content

lines-around-comment

Deprecated

Formatting rules now live in eslint-stylistic. @stylistic/ts/lines-around-comment is the replacement for this rule.
See Deprecating Formatting Rules for more information.

Require empty lines around comments.

🔧

Some problems reported by this rule are automatically fixable by the --fix ESLint command line option.

This rule extends the base eslint/lines-around-comment rule. It adds support for TypeScript syntax.

See the ESLint documentation for more details on the lines-around-comment rule.

How to Use

.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"lines-around-comment": "off",
"@typescript-eslint/lines-around-comment": "error"
}
};

Try this rule in the playground ↗

Options

See eslint/lines-around-comment options.

In addition to the options supported by the lines-around-comment rule in ESLint core, the rule adds the following options:

  • allowEnumEnd: true doesn't require a blank line after an enum body block end
  • allowEnumStart: true doesn't require a blank line before an enum body block start
  • allowInterfaceEnd: true doesn't require a blank line before an interface body block end
  • allowInterfaceStart: true doesn't require a blank line after an interface body block start
  • allowModuleEnd: true doesn't require a blank line before a module body block end
  • allowModuleStart: true doesn't require a blank line after a module body block start
  • allowTypeEnd: true doesn't require a blank line before a type literal block end
  • allowTypeStart: true doesn't require a blank line after a type literal block start

Resources

Taken with ❤️ from ESLint core.