diff --git a/lib/configs/no-layout-rules.js b/lib/configs/no-layout-rules.js index e45c080bc..24e7d0f88 100644 --- a/lib/configs/no-layout-rules.js +++ b/lib/configs/no-layout-rules.js @@ -13,6 +13,9 @@ module.exports = { 'vue/dot-location': 'off', 'vue/html-closing-bracket-newline': 'off', 'vue/html-closing-bracket-spacing': 'off', + 'vue/html-comment-content-newline': 'off', + 'vue/html-comment-content-spacing': 'off', + 'vue/html-comment-indent': 'off', 'vue/html-indent': 'off', 'vue/html-quotes': 'off', 'vue/html-self-closing': 'off', diff --git a/lib/rules/html-comment-content-newline.js b/lib/rules/html-comment-content-newline.js index d6f50608a..a736f4885 100644 --- a/lib/rules/html-comment-content-newline.js +++ b/lib/rules/html-comment-content-newline.js @@ -37,7 +37,7 @@ function parseOption (param) { module.exports = { meta: { - type: 'suggestion', + type: 'layout', docs: { description: 'enforce unified line brake in HTML comments', diff --git a/lib/rules/html-comment-content-spacing.js b/lib/rules/html-comment-content-spacing.js index b55e3e7dd..9f318cf77 100644 --- a/lib/rules/html-comment-content-spacing.js +++ b/lib/rules/html-comment-content-spacing.js @@ -20,7 +20,7 @@ const htmlComments = require('../utils/html-comments') module.exports = { meta: { - type: 'suggestion', + type: 'layout', docs: { description: 'enforce unified spacing in HTML comments', diff --git a/lib/rules/html-comment-indent.js b/lib/rules/html-comment-indent.js index 0efe8b716..bdc4ca0af 100644 --- a/lib/rules/html-comment-indent.js +++ b/lib/rules/html-comment-indent.js @@ -70,7 +70,7 @@ function toUnit (char) { module.exports = { meta: { - type: 'suggestion', + type: 'layout', docs: { description: 'enforce consistent indentation in HTML comments',