Skip to content

Commit ba010c7

Browse files
committed
Fixed types
1 parent 7508003 commit ba010c7

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

lib/configs/no-layout-rules.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ module.exports = {
1313
'vue/dot-location': 'off',
1414
'vue/html-closing-bracket-newline': 'off',
1515
'vue/html-closing-bracket-spacing': 'off',
16+
'vue/html-comment-content-newline': 'off',
17+
'vue/html-comment-content-spacing': 'off',
18+
'vue/html-comment-indent': 'off',
1619
'vue/html-indent': 'off',
1720
'vue/html-quotes': 'off',
1821
'vue/html-self-closing': 'off',

lib/rules/html-comment-content-newline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function parseOption (param) {
3737

3838
module.exports = {
3939
meta: {
40-
type: 'suggestion',
40+
type: 'layout',
4141

4242
docs: {
4343
description: 'enforce unified line brake in HTML comments',

lib/rules/html-comment-content-spacing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const htmlComments = require('../utils/html-comments')
2020

2121
module.exports = {
2222
meta: {
23-
type: 'suggestion',
23+
type: 'layout',
2424

2525
docs: {
2626
description: 'enforce unified spacing in HTML comments',

lib/rules/html-comment-indent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function toUnit (char) {
7070

7171
module.exports = {
7272
meta: {
73-
type: 'suggestion',
73+
type: 'layout',
7474

7575
docs: {
7676
description: 'enforce consistent indentation in HTML comments',

0 commit comments

Comments
 (0)