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.
@html-eslint/no-trailing-spaces
1 parent dcf5bd3 commit 8c7ca16Copy full SHA for 8c7ca16
configurations/html/rules/style.js
@@ -25,5 +25,9 @@ module.exports = {
25
// Disallows the use of multiple empty lines (autofixable)
26
// https://yeonjuan.github.io/html-eslint/docs/rules/no-multiple-empty-lines
27
'+@html-eslint/no-multiple-empty-lines': ['warn', { max: 2 }],
28
+
29
+ // Disallow trailing whitespaces at the end of lines (autofixable)
30
+ // https://yeonjuan.github.io/html-eslint/docs/rules/no-trailing-spaces
31
+ '+@html-eslint/no-trailing-spaces': ['error'],
32
},
33
};
0 commit comments