diff --git a/docs/rules/html-comment-content-newline.md b/docs/rules/html-comment-content-newline.md index 43ea00d4c..3a979623c 100644 --- a/docs/rules/html-comment-content-newline.md +++ b/docs/rules/html-comment-content-newline.md @@ -2,13 +2,13 @@ pageClass: rule-details sidebarDepth: 0 title: vue/html-comment-content-newline -description: enforce unified line brake in HTML comments +description: enforce unified line break in HTML comments since: v7.0.0 --- # vue/html-comment-content-newline -> enforce unified line brake in HTML comments +> enforce unified line break in HTML comments - :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule. diff --git a/docs/rules/index.md b/docs/rules/index.md index 074f4bd46..2acb765aa 100644 --- a/docs/rules/index.md +++ b/docs/rules/index.md @@ -217,7 +217,7 @@ For example: | [vue/define-props-declaration](./define-props-declaration.md) | enforce declaration style of `defineProps` | | :hammer: | | [vue/enforce-style-attribute](./enforce-style-attribute.md) | enforce or forbid the use of the `scoped` and `module` attributes in SFC top level style tags | | :hammer: | | [vue/html-button-has-type](./html-button-has-type.md) | disallow usage of button without an explicit type attribute | | :hammer: | -| [vue/html-comment-content-newline](./html-comment-content-newline.md) | enforce unified line brake in HTML comments | :wrench: | :lipstick: | +| [vue/html-comment-content-newline](./html-comment-content-newline.md) | enforce unified line break in HTML comments | :wrench: | :lipstick: | | [vue/html-comment-content-spacing](./html-comment-content-spacing.md) | enforce unified spacing in HTML comments | :wrench: | :lipstick: | | [vue/html-comment-indent](./html-comment-indent.md) | enforce consistent indentation in HTML comments | :wrench: | :lipstick: | | [vue/match-component-file-name](./match-component-file-name.md) | require component name property to match its file name | :bulb: | :hammer: | diff --git a/lib/rules/html-comment-content-newline.js b/lib/rules/html-comment-content-newline.js index 170b2bfb4..590ec9fc1 100644 --- a/lib/rules/html-comment-content-newline.js +++ b/lib/rules/html-comment-content-newline.js @@ -34,7 +34,7 @@ module.exports = { type: 'layout', docs: { - description: 'enforce unified line brake in HTML comments', + description: 'enforce unified line break in HTML comments', categories: undefined, url: 'https://eslint.vuejs.org/rules/html-comment-content-newline.html' },