Skip to content

Commit d7de72f

Browse files
committed
4.3.0
1 parent 0db4f93 commit d7de72f

Some content is hidden

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

58 files changed

+62
-55
lines changed

README.md

Lines changed: 4 additions & 3 deletions

docs/rules/attributes-order.md

Lines changed: 2 additions & 0 deletions

docs/rules/max-attributes-per-line.md

Lines changed: 1 addition & 0 deletions

docs/rules/order-in-components.md

Lines changed: 1 addition & 0 deletions

docs/rules/prop-name-casing.md

Lines changed: 1 addition & 1 deletion

lib/configs/recommended.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
module.exports = {
77
extends: require.resolve('./strongly-recommended'),
88
rules: {
9+
'vue/attributes-order': 'error',
910
'vue/html-quotes': 'error',
1011
'vue/no-confusing-v-for-v-if': 'error',
1112
'vue/order-in-components': 'error',

lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ module.exports = {
3333
'no-textarea-mustache': require('./rules/no-textarea-mustache'),
3434
'no-unused-vars': require('./rules/no-unused-vars'),
3535
'order-in-components': require('./rules/order-in-components'),
36+
'prop-name-casing': require('./rules/prop-name-casing'),
3637
'require-component-is': require('./rules/require-component-is'),
3738
'require-default-prop': require('./rules/require-default-prop'),
3839
'require-prop-types': require('./rules/require-prop-types'),

lib/rules/attribute-hyphenation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = {
1616
docs: {
1717
description: 'enforce attribute naming style in template',
1818
category: 'strongly-recommended',
19-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.2.2/docs/rules/attribute-hyphenation.md'
19+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.3.0/docs/rules/attribute-hyphenation.md'
2020
},
2121
fixable: 'code',
2222
schema: [

lib/rules/comment-directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ module.exports = {
109109
docs: {
110110
description: 'support comment-directives in `<template>`',
111111
category: 'base',
112-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.2.2/docs/rules/comment-directive.md'
112+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.3.0/docs/rules/comment-directive.md'
113113
},
114114
schema: []
115115
},

lib/rules/html-closing-bracket-newline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = {
3232
docs: {
3333
description: "require or disallow a line break before tag's closing brackets",
3434
category: undefined,
35-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.2.2/docs/rules/html-closing-bracket-newline.md'
35+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.3.0/docs/rules/html-closing-bracket-newline.md'
3636
},
3737
fixable: 'whitespace',
3838
schema: [{

0 commit comments

Comments
 (0)