Skip to content

Commit

Permalink
4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsnik committed Apr 19, 2018
1 parent 5cc3021 commit d7e98dd
Show file tree
Hide file tree
Showing 54 changed files with 2,221 additions and 52 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi

| | Rule ID | Description |
|:---|:--------|:------------|
| | [vue/attributes-order](./docs/rules/attributes-order.md) | enforce order of attributes |
| :wrench: | [vue/attributes-order](./docs/rules/attributes-order.md) | enforce order of attributes |
| :wrench: | [vue/html-quotes](./docs/rules/html-quotes.md) | enforce quotes style of HTML attributes |
| | [vue/no-confusing-v-for-v-if](./docs/rules/no-confusing-v-for-v-if.md) | disallow confusing `v-for` and `v-if` on the same element |
| :wrench: | [vue/order-in-components](./docs/rules/order-in-components.md) | enforce order of properties in components |
Expand Down
1 change: 1 addition & 0 deletions docs/rules/attributes-order.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# enforce order of attributes (vue/attributes-order)

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

## :book: Rule Details

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/attribute-hyphenation.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
docs: {
description: 'enforce attribute naming style in template',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/attribute-hyphenation.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/attribute-hyphenation.md'
},
fixable: 'code',
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/comment-directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ module.exports = {
docs: {
description: 'support comment-directives in `<template>`',
category: 'base',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/comment-directive.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/comment-directive.md'
},
schema: []
},
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-closing-bracket-newline.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = {
docs: {
description: "require or disallow a line break before tag's closing brackets",
category: undefined,
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/html-closing-bracket-newline.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/html-closing-bracket-newline.md'
},
fixable: 'whitespace',
schema: [{
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-closing-bracket-spacing.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = {
docs: {
description: 'require or disallow a space before tag\'s closing brackets',
category: undefined,
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/html-closing-bracket-spacing.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/html-closing-bracket-spacing.md'
},
schema: [{
type: 'object',
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-end-tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce end tag style',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/html-end-tags.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/html-end-tags.md'
},
fixable: 'code',
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-indent.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
docs: {
description: 'enforce consistent indentation in `<template>`',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/html-indent.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/html-indent.md'
},
fixable: 'whitespace',
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-quotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce quotes style of HTML attributes',
category: 'recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/html-quotes.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/html-quotes.md'
},
fixable: 'code',
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/html-self-closing.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ module.exports = {
docs: {
description: 'enforce self-closing style',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/html-self-closing.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/html-self-closing.md'
},
fixable: 'code',
schema: {
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/jsx-uses-vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
docs: {
description: 'prevent variables used in JSX to be marked as unused', // eslint-disable-line consistent-docs-description
category: 'base',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/jsx-uses-vars.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/jsx-uses-vars.md'
},
schema: []
},
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/max-attributes-per-line.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
docs: {
description: 'enforce the maximum number of attributes per line',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/max-attributes-per-line.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/max-attributes-per-line.md'
},
fixable: 'whitespace', // or "code" or "whitespace"
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/mustache-interpolation-spacing.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = {
docs: {
description: 'enforce unified spacing in mustache interpolations',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/mustache-interpolation-spacing.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/mustache-interpolation-spacing.md'
},
fixable: 'whitespace',
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/name-property-casing.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
docs: {
description: 'enforce specific casing for the name property in Vue components',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/name-property-casing.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/name-property-casing.md'
},
fixable: 'code', // or "code" or "whitespace"
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-async-in-computed-properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ module.exports = {
docs: {
description: 'disallow asynchronous actions in computed properties',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-async-in-computed-properties.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-async-in-computed-properties.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-confusing-v-for-v-if.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
docs: {
description: 'disallow confusing `v-for` and `v-if` on the same element',
category: 'recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-confusing-v-for-v-if.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-confusing-v-for-v-if.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-dupe-keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
docs: {
description: 'disallow duplication of field names',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-dupe-keys.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-dupe-keys.md'
},
fixable: null, // or "code" or "whitespace"
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-duplicate-attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
docs: {
description: 'disallow duplication of attributes',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-duplicate-attributes.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-duplicate-attributes.md'
},
fixable: null,

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-multi-spaces.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
docs: {
description: 'disallow multiple spaces',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-multi-spaces.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-multi-spaces.md'
},
fixable: 'whitespace', // or "code" or "whitespace"
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-parsing-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module.exports = {
docs: {
description: 'disallow parsing errors in `<template>`',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-parsing-error.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-parsing-error.md'
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-reserved-keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {
docs: {
description: 'disallow overwriting reserved keys',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-reserved-keys.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-reserved-keys.md'
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-shared-component-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = {
docs: {
description: "enforce component's data property to be a function",
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-shared-component-data.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-shared-component-data.md'
},
fixable: 'code',
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-side-effects-in-computed-properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
docs: {
description: 'disallow side effects in computed properties',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-side-effects-in-computed-properties.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-side-effects-in-computed-properties.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-template-key.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'disallow `key` attribute on `<template>`',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-template-key.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-template-key.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-textarea-mustache.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'disallow mustaches in `<textarea>`',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-textarea-mustache.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-textarea-mustache.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-unused-vars.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
docs: {
description: 'disallow unused variable definitions of v-for directives or scope attributes',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/no-unused-vars.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/no-unused-vars.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/order-in-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ module.exports = {
docs: {
description: 'enforce order of properties in components',
category: 'recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/order-in-components.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/order-in-components.md'
},
fixable: 'code', // null or "code" or "whitespace"
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/require-component-is.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'require `v-bind:is` of `<component>` elements',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/require-component-is.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/require-component-is.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/require-default-prop.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
docs: {
description: 'require default value for props',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/require-default-prop.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/require-default-prop.md'
},
fixable: null, // or "code" or "whitespace"
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/require-prop-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
docs: {
description: 'require type definitions in props',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/require-prop-types.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/require-prop-types.md'
},
fixable: null, // or "code" or "whitespace"
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/require-render-return.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
docs: {
description: 'enforce render function to always return value',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/require-render-return.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/require-render-return.md'
},
fixable: null, // or "code" or "whitespace"
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/require-v-for-key.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'require `v-bind:key` with `v-for` directives',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/require-v-for-key.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/require-v-for-key.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/require-valid-default-prop.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = {
docs: {
description: 'enforce props default values to be valid',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/require-valid-default-prop.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/require-valid-default-prop.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/return-in-computed-property.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
docs: {
description: 'enforce that a return statement is present in computed property',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/return-in-computed-property.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/return-in-computed-property.md'
},
fixable: null, // or "code" or "whitespace"
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/script-indent.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = {
docs: {
description: 'enforce consistent indentation in `<script>`',
category: undefined,
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/script-indent.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/script-indent.md'
},
fixable: 'whitespace',
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/this-in-template.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce usage of `this` in template',
category: 'recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/this-in-template.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/this-in-template.md'
},
fixable: null,
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/v-bind-style.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce `v-bind` directive style',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/v-bind-style.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/v-bind-style.md'
},
fixable: 'code',
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/v-on-style.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce `v-on` directive style',
category: 'strongly-recommended',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/v-on-style.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/v-on-style.md'
},
fixable: 'code',
schema: [
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/valid-template-root.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce valid template root',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/valid-template-root.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/valid-template-root.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/valid-v-bind.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
docs: {
description: 'enforce valid `v-bind` directives',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/valid-v-bind.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/valid-v-bind.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/valid-v-cloak.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce valid `v-cloak` directives',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/valid-v-cloak.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/valid-v-cloak.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/valid-v-else-if.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce valid `v-else-if` directives',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/valid-v-else-if.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/valid-v-else-if.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/valid-v-else.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = {
docs: {
description: 'enforce valid `v-else` directives',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/valid-v-else.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/valid-v-else.md'
},
fixable: null,
schema: []
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/valid-v-for.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ module.exports = {
docs: {
description: 'enforce valid `v-for` directives',
category: 'essential',
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.4.0/docs/rules/valid-v-for.md'
url: 'https://github.com/vuejs/eslint-plugin-vue/blob/v4.5.0/docs/rules/valid-v-for.md'
},
fixable: null,
schema: []
Expand Down
Loading

0 comments on commit d7e98dd

Please sign in to comment.