Skip to content

Commit 54ae0d2

Browse files
committed
Add suggestions from mysticatea
1 parent 75bb7a0 commit 54ae0d2

7 files changed

+7
-7
lines changed

lib/rules/attribute-hyphenation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const casing = require('../utils/casing')
1313

1414
module.exports = {
1515
meta: {
16-
type: 'layout',
16+
type: 'suggestion',
1717
docs: {
1818
description: 'enforce attribute naming style on custom components in template',
1919
category: 'strongly-recommended',

lib/rules/attributes-order.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function create (context) {
103103

104104
module.exports = {
105105
meta: {
106-
type: 'layout',
106+
type: 'suggestion',
107107
docs: {
108108
description: 'enforce order of attributes',
109109
category: 'recommended',

lib/rules/component-name-in-template-casing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const defaultCase = 'PascalCase'
2020

2121
module.exports = {
2222
meta: {
23-
type: 'layout',
23+
type: 'suggestion',
2424
docs: {
2525
description: 'enforce specific casing for the component naming style in template',
2626
category: 'strongly-recommended',

lib/rules/html-end-tags.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const utils = require('../utils')
1717

1818
module.exports = {
1919
meta: {
20-
type: 'layout',
20+
type: 'suggestion',
2121
docs: {
2222
description: 'enforce end tag style',
2323
category: 'strongly-recommended',

lib/rules/name-property-casing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const allowedCaseOptions = ['PascalCase', 'kebab-case']
1414

1515
module.exports = {
1616
meta: {
17-
type: 'layout',
17+
type: 'suggestion',
1818
docs: {
1919
description: 'enforce specific casing for the name property in Vue components',
2020
category: 'strongly-recommended',

lib/rules/order-in-components.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function isNotSideEffectsNode (node, visitorKeys) {
132132

133133
module.exports = {
134134
meta: {
135-
type: 'layout',
135+
type: 'suggestion',
136136
docs: {
137137
description: 'enforce order of properties in components',
138138
category: 'recommended',

lib/rules/prop-name-casing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function create (context) {
7171

7272
module.exports = {
7373
meta: {
74-
type: 'layout',
74+
type: 'suggestion',
7575
docs: {
7676
description: 'enforce specific casing for the Prop name in Vue components',
7777
category: 'strongly-recommended',

0 commit comments

Comments
 (0)