Skip to content

Commit

Permalink
Fixed types
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed May 17, 2020
1 parent 7508003 commit ba010c7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions lib/configs/no-layout-rules.js
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-comment-content-newline.js
Expand Up @@ -37,7 +37,7 @@ function parseOption (param) {

module.exports = {
meta: {
type: 'suggestion',
type: 'layout',

docs: {
description: 'enforce unified line brake in HTML comments',
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-comment-content-spacing.js
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-comment-indent.js
Expand Up @@ -70,7 +70,7 @@ function toUnit (char) {

module.exports = {
meta: {
type: 'suggestion',
type: 'layout',

docs: {
description: 'enforce consistent indentation in HTML comments',
Expand Down

0 comments on commit ba010c7

Please sign in to comment.