Skip to content

Commit 1ef1d33

Browse files
committed
5.0.0-beta.5
1 parent b18d351 commit 1ef1d33

File tree

72 files changed

+100
-89
lines changed

Some content is hidden

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

72 files changed

+100
-89
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
166166
| | [vue/require-v-for-key](./docs/rules/require-v-for-key.md) | require `v-bind:key` with `v-for` directives |
167167
| | [vue/require-valid-default-prop](./docs/rules/require-valid-default-prop.md) | enforce props default values to be valid |
168168
| | [vue/return-in-computed-property](./docs/rules/return-in-computed-property.md) | enforce that a return statement is present in computed property |
169+
| | [vue/use-v-on-exact](./docs/rules/use-v-on-exact.md) | enforce usage of `exact` modifier on `v-on` |
169170
| | [vue/valid-template-root](./docs/rules/valid-template-root.md) | enforce valid template root |
170171
| | [vue/valid-v-bind](./docs/rules/valid-v-bind.md) | enforce valid `v-bind` directives |
171172
| | [vue/valid-v-cloak](./docs/rules/valid-v-cloak.md) | enforce valid `v-cloak` directives |
@@ -194,19 +195,23 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
194195
| | Rule ID | Description |
195196
|:---|:--------|:------------|
196197
| :wrench: | [vue/attribute-hyphenation](./docs/rules/attribute-hyphenation.md) | enforce attribute naming style on custom components in template |
198+
| :wrench: | [vue/component-name-in-template-casing](./docs/rules/component-name-in-template-casing.md) | enforce specific casing for the component naming style in template |
197199
| :wrench: | [vue/html-closing-bracket-newline](./docs/rules/html-closing-bracket-newline.md) | require or disallow a line break before tag's closing brackets |
198200
| :wrench: | [vue/html-closing-bracket-spacing](./docs/rules/html-closing-bracket-spacing.md) | require or disallow a space before tag's closing brackets |
199201
| :wrench: | [vue/html-end-tags](./docs/rules/html-end-tags.md) | enforce end tag style |
200202
| :wrench: | [vue/html-indent](./docs/rules/html-indent.md) | enforce consistent indentation in `<template>` |
201203
| :wrench: | [vue/html-self-closing](./docs/rules/html-self-closing.md) | enforce self-closing style |
202204
| :wrench: | [vue/max-attributes-per-line](./docs/rules/max-attributes-per-line.md) | enforce the maximum number of attributes per line |
205+
| :wrench: | [vue/multiline-html-element-content-newline](./docs/rules/multiline-html-element-content-newline.md) | require a line break before and after the contents of a multiline element |
203206
| :wrench: | [vue/mustache-interpolation-spacing](./docs/rules/mustache-interpolation-spacing.md) | enforce unified spacing in mustache interpolations |
204207
| :wrench: | [vue/name-property-casing](./docs/rules/name-property-casing.md) | enforce specific casing for the name property in Vue components |
205208
| :wrench: | [vue/no-multi-spaces](./docs/rules/no-multi-spaces.md) | disallow multiple spaces |
209+
| :wrench: | [vue/no-spaces-around-equal-signs-in-attribute](./docs/rules/no-spaces-around-equal-signs-in-attribute.md) | disallow spaces around equal signs in attribute |
206210
| | [vue/no-template-shadow](./docs/rules/no-template-shadow.md) | disallow variable declarations from shadowing variables declared in the outer scope |
207211
| :wrench: | [vue/prop-name-casing](./docs/rules/prop-name-casing.md) | enforce specific casing for the Prop name in Vue components |
208212
| | [vue/require-default-prop](./docs/rules/require-default-prop.md) | require default value for props |
209213
| | [vue/require-prop-types](./docs/rules/require-prop-types.md) | require type definitions in props |
214+
| :wrench: | [vue/singleline-html-element-content-newline](./docs/rules/singleline-html-element-content-newline.md) | require a line break before and after the contents of a singleline element |
210215
| :wrench: | [vue/v-bind-style](./docs/rules/v-bind-style.md) | enforce `v-bind` directive style |
211216
| :wrench: | [vue/v-on-style](./docs/rules/v-on-style.md) | enforce `v-on` directive style |
212217

@@ -232,12 +237,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
232237

233238
| | Rule ID | Description |
234239
|:---|:--------|:------------|
235-
| :wrench: | [vue/component-name-in-template-casing](./docs/rules/component-name-in-template-casing.md) | enforce specific casing for the component naming style in template |
236-
| :wrench: | [vue/multiline-html-element-content-newline](./docs/rules/multiline-html-element-content-newline.md) | require a line break before and after the contents of a multiline element |
237-
| :wrench: | [vue/no-spaces-around-equal-signs-in-attribute](./docs/rules/no-spaces-around-equal-signs-in-attribute.md) | disallow spaces around equal signs in attribute |
238240
| :wrench: | [vue/script-indent](./docs/rules/script-indent.md) | enforce consistent indentation in `<script>` |
239-
| :wrench: | [vue/singleline-html-element-content-newline](./docs/rules/singleline-html-element-content-newline.md) | require a line break before and after the contents of a singleline element |
240-
| | [vue/use-v-on-exact](./docs/rules/use-v-on-exact.md) | enforce usage of `exact` modifier on `v-on` |
241241

242242
### Deprecated
243243

Diff for: docs/rules/component-name-in-template-casing.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# enforce specific casing for the component naming style in template (vue/component-name-in-template-casing)
22

3+
- :gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
34
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
45

56
Define a style for the component name in template casing for consistency purposes.

Diff for: docs/rules/multiline-html-element-content-newline.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# require a line break before and after the contents of a multiline element (vue/multiline-html-element-content-newline)
22

3+
- :gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
34
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
45

56
## :book: Rule Details

Diff for: docs/rules/no-spaces-around-equal-signs-in-attribute.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# disallow spaces around equal signs in attribute (vue/no-spaces-around-equal-signs-in-attribute)
22

3+
- :gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
34
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
45

56
This rule disallow spaces around equal signs in attribute.

Diff for: docs/rules/singleline-html-element-content-newline.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# require a line break before and after the contents of a singleline element (vue/singleline-html-element-content-newline)
22

3+
- :gear: This rule is included in `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
34
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
45

56
## :book: Rule Details

Diff for: docs/rules/use-v-on-exact.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# enforce usage of `exact` modifier on `v-on` (vue/use-v-on-exact)
22

3+
- :gear: This rule is included in all of `"plugin:vue/essential"`, `"plugin:vue/strongly-recommended"` and `"plugin:vue/recommended"`.
4+
35
This rule enforce usage of `exact` modifier on `v-on` when there is another `v-on` with modifier.
46

57
:+1: Examples of **correct** code for this rule:

Diff for: lib/configs/essential.js

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ module.exports = {
2424
'vue/require-v-for-key': 'error',
2525
'vue/require-valid-default-prop': 'error',
2626
'vue/return-in-computed-property': 'error',
27+
'vue/use-v-on-exact': 'error',
2728
'vue/valid-template-root': 'error',
2829
'vue/valid-v-bind': 'error',
2930
'vue/valid-v-cloak': 'error',

Diff for: lib/configs/recommended.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
module.exports = {
77
extends: require.resolve('./strongly-recommended'),
88
rules: {
9-
'vue/attributes-order': 'error',
10-
'vue/html-quotes': 'error',
11-
'vue/no-v-html': 'error',
12-
'vue/order-in-components': 'error',
13-
'vue/this-in-template': 'error'
9+
'vue/attributes-order': 'warn',
10+
'vue/html-quotes': 'warn',
11+
'vue/no-v-html': 'warn',
12+
'vue/order-in-components': 'warn',
13+
'vue/this-in-template': 'warn'
1414
}
1515
}

Diff for: lib/configs/strongly-recommended.js

+20-16
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,25 @@
66
module.exports = {
77
extends: require.resolve('./essential'),
88
rules: {
9-
'vue/attribute-hyphenation': 'error',
10-
'vue/html-closing-bracket-newline': 'error',
11-
'vue/html-closing-bracket-spacing': 'error',
12-
'vue/html-end-tags': 'error',
13-
'vue/html-indent': 'error',
14-
'vue/html-self-closing': 'error',
15-
'vue/max-attributes-per-line': 'error',
16-
'vue/mustache-interpolation-spacing': 'error',
17-
'vue/name-property-casing': 'error',
18-
'vue/no-multi-spaces': 'error',
19-
'vue/no-template-shadow': 'error',
20-
'vue/prop-name-casing': 'error',
21-
'vue/require-default-prop': 'error',
22-
'vue/require-prop-types': 'error',
23-
'vue/v-bind-style': 'error',
24-
'vue/v-on-style': 'error'
9+
'vue/attribute-hyphenation': 'warn',
10+
'vue/component-name-in-template-casing': 'warn',
11+
'vue/html-closing-bracket-newline': 'warn',
12+
'vue/html-closing-bracket-spacing': 'warn',
13+
'vue/html-end-tags': 'warn',
14+
'vue/html-indent': 'warn',
15+
'vue/html-self-closing': 'warn',
16+
'vue/max-attributes-per-line': 'warn',
17+
'vue/multiline-html-element-content-newline': 'warn',
18+
'vue/mustache-interpolation-spacing': 'warn',
19+
'vue/name-property-casing': 'warn',
20+
'vue/no-multi-spaces': 'warn',
21+
'vue/no-spaces-around-equal-signs-in-attribute': 'warn',
22+
'vue/no-template-shadow': 'warn',
23+
'vue/prop-name-casing': 'warn',
24+
'vue/require-default-prop': 'warn',
25+
'vue/require-prop-types': 'warn',
26+
'vue/singleline-html-element-content-newline': 'warn',
27+
'vue/v-bind-style': 'warn',
28+
'vue/v-on-style': 'warn'
2529
}
2630
}

Diff for: lib/rules/attribute-hyphenation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = {
1717
docs: {
1818
description: 'enforce attribute naming style on custom components in template',
1919
category: 'strongly-recommended',
20-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/attribute-hyphenation.md'
20+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/attribute-hyphenation.md'
2121
},
2222
fixable: 'code',
2323
schema: [

Diff for: lib/rules/attributes-order.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ module.exports = {
107107
docs: {
108108
description: 'enforce order of attributes',
109109
category: 'recommended',
110-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/attributes-order.md'
110+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/attributes-order.md'
111111
},
112112
fixable: 'code',
113113
schema: {

Diff for: lib/rules/comment-directive.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ module.exports = {
110110
docs: {
111111
description: 'support comment-directives in `<template>`',
112112
category: 'base',
113-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/comment-directive.md'
113+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/comment-directive.md'
114114
},
115115
schema: []
116116
},

Diff for: lib/rules/component-name-in-template-casing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = {
2424
docs: {
2525
description: 'enforce specific casing for the component naming style in template',
2626
category: 'strongly-recommended',
27-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/component-name-in-template-casing.md'
27+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/component-name-in-template-casing.md'
2828
},
2929
fixable: 'code',
3030
schema: [

Diff for: lib/rules/html-closing-bracket-newline.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = {
3333
docs: {
3434
description: "require or disallow a line break before tag's closing brackets",
3535
category: 'strongly-recommended',
36-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/html-closing-bracket-newline.md'
36+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/html-closing-bracket-newline.md'
3737
},
3838
fixable: 'whitespace',
3939
schema: [{

Diff for: lib/rules/html-closing-bracket-spacing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module.exports = {
5454
docs: {
5555
description: 'require or disallow a space before tag\'s closing brackets',
5656
category: 'strongly-recommended',
57-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/html-closing-bracket-spacing.md'
57+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/html-closing-bracket-spacing.md'
5858
},
5959
schema: [{
6060
type: 'object',

Diff for: lib/rules/html-end-tags.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = {
2121
docs: {
2222
description: 'enforce end tag style',
2323
category: 'strongly-recommended',
24-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/html-end-tags.md'
24+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/html-end-tags.md'
2525
},
2626
fixable: 'code',
2727
schema: []

Diff for: lib/rules/html-indent.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = {
3030
docs: {
3131
description: 'enforce consistent indentation in `<template>`',
3232
category: 'strongly-recommended',
33-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/html-indent.md'
33+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/html-indent.md'
3434
},
3535
fixable: 'whitespace',
3636
schema: [

Diff for: lib/rules/html-quotes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = {
2121
docs: {
2222
description: 'enforce quotes style of HTML attributes',
2323
category: 'recommended',
24-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/html-quotes.md'
24+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/html-quotes.md'
2525
},
2626
fixable: 'code',
2727
schema: [

Diff for: lib/rules/html-self-closing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ module.exports = {
8989
docs: {
9090
description: 'enforce self-closing style',
9191
category: 'strongly-recommended',
92-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/html-self-closing.md'
92+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/html-self-closing.md'
9393
},
9494
fixable: 'code',
9595
schema: {

Diff for: lib/rules/jsx-uses-vars.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = {
4040
docs: {
4141
description: 'prevent variables used in JSX to be marked as unused', // eslint-disable-line consistent-docs-description
4242
category: 'base',
43-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/jsx-uses-vars.md'
43+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/jsx-uses-vars.md'
4444
},
4545
schema: []
4646
},

Diff for: lib/rules/max-attributes-per-line.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = {
1515
docs: {
1616
description: 'enforce the maximum number of attributes per line',
1717
category: 'strongly-recommended',
18-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/max-attributes-per-line.md'
18+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/max-attributes-per-line.md'
1919
},
2020
fixable: 'whitespace', // or "code" or "whitespace"
2121
schema: [

Diff for: lib/rules/multiline-html-element-content-newline.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module.exports = {
5454
docs: {
5555
description: 'require a line break before and after the contents of a multiline element',
5656
category: 'strongly-recommended',
57-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/multiline-html-element-content-newline.md'
57+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/multiline-html-element-content-newline.md'
5858
},
5959
fixable: 'whitespace',
6060
schema: [{

Diff for: lib/rules/mustache-interpolation-spacing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
docs: {
2121
description: 'enforce unified spacing in mustache interpolations',
2222
category: 'strongly-recommended',
23-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/mustache-interpolation-spacing.md'
23+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/mustache-interpolation-spacing.md'
2424
},
2525
fixable: 'whitespace',
2626
schema: [

Diff for: lib/rules/name-property-casing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
docs: {
1919
description: 'enforce specific casing for the name property in Vue components',
2020
category: 'strongly-recommended',
21-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/name-property-casing.md'
21+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/name-property-casing.md'
2222
},
2323
fixable: 'code', // or "code" or "whitespace"
2424
schema: [

Diff for: lib/rules/no-async-in-computed-properties.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports = {
6565
docs: {
6666
description: 'disallow asynchronous actions in computed properties',
6767
category: 'essential',
68-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-async-in-computed-properties.md'
68+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-async-in-computed-properties.md'
6969
},
7070
fixable: null,
7171
schema: []

Diff for: lib/rules/no-confusing-v-for-v-if.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = {
4040
docs: {
4141
description: 'disallow confusing `v-for` and `v-if` on the same element',
4242
category: 'recommended',
43-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-confusing-v-for-v-if.md',
43+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-confusing-v-for-v-if.md',
4444
replacedBy: ['no-use-v-if-with-v-for']
4545
},
4646
deprecated: true,

Diff for: lib/rules/no-dupe-keys.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
docs: {
1919
description: 'disallow duplication of field names',
2020
category: 'essential',
21-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-dupe-keys.md'
21+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-dupe-keys.md'
2222
},
2323
fixable: null, // or "code" or "whitespace"
2424
schema: [

Diff for: lib/rules/no-duplicate-attributes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = {
4040
docs: {
4141
description: 'disallow duplication of attributes',
4242
category: 'essential',
43-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-duplicate-attributes.md'
43+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-duplicate-attributes.md'
4444
},
4545
fixable: null,
4646

Diff for: lib/rules/no-multi-spaces.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
docs: {
2020
description: 'disallow multiple spaces',
2121
category: 'strongly-recommended',
22-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-multi-spaces.md'
22+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-multi-spaces.md'
2323
},
2424
fixable: 'whitespace', // or "code" or "whitespace"
2525
schema: [{

Diff for: lib/rules/no-parsing-error.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module.exports = {
5959
docs: {
6060
description: 'disallow parsing errors in `<template>`',
6161
category: 'essential',
62-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-parsing-error.md'
62+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-parsing-error.md'
6363
},
6464
fixable: null,
6565
schema: [

Diff for: lib/rules/no-reserved-keys.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = {
1919
docs: {
2020
description: 'disallow overwriting reserved keys',
2121
category: 'essential',
22-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-reserved-keys.md'
22+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-reserved-keys.md'
2323
},
2424
fixable: null,
2525
schema: [

Diff for: lib/rules/no-shared-component-data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module.exports = {
4141
docs: {
4242
description: "enforce component's data property to be a function",
4343
category: 'essential',
44-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-shared-component-data.md'
44+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-shared-component-data.md'
4545
},
4646
fixable: 'code',
4747
schema: []

Diff for: lib/rules/no-side-effects-in-computed-properties.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = {
1616
docs: {
1717
description: 'disallow side effects in computed properties',
1818
category: 'essential',
19-
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.4/docs/rules/no-side-effects-in-computed-properties.md'
19+
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v5.0.0-beta.5/docs/rules/no-side-effects-in-computed-properties.md'
2020
},
2121
fixable: null,
2222
schema: []

0 commit comments

Comments
 (0)