Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b18d351

Browse files
armano2michalsnik
authored andcommittedNov 23, 2018
chore: add type to all rules (#673)
* chore: add type to all rules Make sure that --fix-type cli parameter works with our plugin * Update require-v-for-key.js * Add suggestions from mysticatea
1 parent 3dd2e42 commit b18d351

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+62
-0
lines changed
 

‎lib/rules/attribute-hyphenation.js

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

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

‎lib/rules/attributes-order.js

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

104104
module.exports = {
105105
meta: {
106+
type: 'suggestion',
106107
docs: {
107108
description: 'enforce order of attributes',
108109
category: 'recommended',

0 commit comments

Comments
 (0)
Please sign in to comment.