Skip to content

Commit cc9c140

Browse files
committed
7.5.0
1 parent bbbb6ca commit cc9c140

7 files changed

+22
-11
lines changed

docs/rules/next-tick-style.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/next-tick-style
55
description: enforce Promise or callback style in `nextTick`
6+
since: v7.5.0
67
---
78
# vue/next-tick-style
89

910
> enforce Promise or callback style in `nextTick`
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :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.
1313

1414
## :book: Rule Details
@@ -97,6 +97,10 @@ export default {
9797
- [Global `nextTick` API in Vue 3](https://v3.vuejs.org/api/global-api.html#nexttick)
9898
- [Instance `$nextTick` API in Vue 3](https://v3.vuejs.org/api/instance-methods.html#nexttick)
9999

100+
## :rocket: Version
101+
102+
This rule was introduced in eslint-plugin-vue v7.5.0
103+
100104
## :mag: Implementation
101105

102106
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/next-tick-style.js)

docs/rules/no-async-in-computed-properties.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-async-in-computed-properties
5-
description: disallow asynchronous actions in computed properties and functions
5+
description: disallow asynchronous actions in computed properties
66
since: v3.8.0
77
---
88
# vue/no-async-in-computed-properties
99

10-
> disallow asynchronous actions in computed properties and functions
10+
> disallow asynchronous actions in computed properties
1111
1212
- :gear: This rule is included in all of `"plugin:vue/vue3-essential"`, `"plugin:vue/essential"`, `"plugin:vue/vue3-strongly-recommended"`, `"plugin:vue/strongly-recommended"`, `"plugin:vue/vue3-recommended"` and `"plugin:vue/recommended"`.
1313

docs/rules/no-constant-condition.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-constant-condition
55
description: disallow constant expressions in conditions
6+
since: v7.5.0
67
---
78
# vue/no-constant-condition
89

910
> disallow constant expressions in conditions
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
12-
1312
This rule is the same rule as core [no-constant-condition] rule but it applies to the expressions in `<template>`.
1413

1514
## :books: Further Reading
@@ -18,6 +17,10 @@ This rule is the same rule as core [no-constant-condition] rule but it applies t
1817

1918
[no-constant-condition]: https://eslint.org/docs/rules/no-constant-condition
2019

20+
## :rocket: Version
21+
22+
This rule was introduced in eslint-plugin-vue v7.5.0
23+
2124
## :mag: Implementation
2225

2326
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-constant-condition.js)

docs/rules/no-side-effects-in-computed-properties.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-side-effects-in-computed-properties
5-
description: disallow side effects in computed properties and functions
5+
description: disallow side effects in computed properties
66
since: v3.6.0
77
---
88
# vue/no-side-effects-in-computed-properties
99

10-
> disallow side effects in computed properties and functions
10+
> disallow side effects in computed properties
1111
1212
- :gear: This rule is included in all of `"plugin:vue/vue3-essential"`, `"plugin:vue/essential"`, `"plugin:vue/vue3-strongly-recommended"`, `"plugin:vue/strongly-recommended"`, `"plugin:vue/vue3-recommended"` and `"plugin:vue/recommended"`.
1313

docs/rules/return-in-computed-property.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/return-in-computed-property
5-
description: enforce that a return statement is present in computed property and function
5+
description: enforce that a return statement is present in computed property
66
since: v3.7.0
77
---
88
# vue/return-in-computed-property
99

10-
> enforce that a return statement is present in computed property and function
10+
> enforce that a return statement is present in computed property
1111
1212
- :gear: This rule is included in all of `"plugin:vue/vue3-essential"`, `"plugin:vue/essential"`, `"plugin:vue/vue3-strongly-recommended"`, `"plugin:vue/strongly-recommended"`, `"plugin:vue/vue3-recommended"` and `"plugin:vue/recommended"`.
1313

docs/rules/valid-next-tick.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/valid-next-tick
55
description: enforce valid `nextTick` function calls
6+
since: v7.5.0
67
---
78
# vue/valid-next-tick
89

910
> enforce valid `nextTick` function calls
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :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.
1313

1414
## :book: Rule Details
@@ -82,6 +82,10 @@ Nothing.
8282
- [Global `nextTick` API in Vue 3](https://v3.vuejs.org/api/global-api.html#nexttick)
8383
- [Instance `$nextTick` API in Vue 3](https://v3.vuejs.org/api/instance-methods.html#nexttick)
8484

85+
## :rocket: Version
86+
87+
This rule was introduced in eslint-plugin-vue v7.5.0
88+
8589
## :mag: Implementation
8690

8791
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/valid-next-tick.js)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-vue",
3-
"version": "7.4.0",
3+
"version": "7.5.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)