We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@typescript-eslint/lines-around-comment
1 parent e1d903b commit 99064b2Copy full SHA for 99064b2
configurations/typescript/rules/typescript.js
@@ -213,6 +213,10 @@ module.exports = {
213
// https://typescript-eslint.io/rules/keyword-spacing/
214
...extendFromBase('+keyword-spacing'),
215
216
+ // Require empty lines around comments (autofixable)
217
+ // https://typescript-eslint.io/rules/lines-around-comment/
218
+ ...extendFromBase('+lines-around-comment'),
219
+
220
// Require or disallow an empty line between class members (autofixable)
221
// https://typescript-eslint.io/rules/lines-between-class-members
222
// Note: has additional options, but the defaults are good
0 commit comments