From cc9c14003390dccf358cbda042e359ecfda8432a Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Fri, 22 Jan 2021 10:06:33 +0900 Subject: [PATCH] 7.5.0 --- docs/rules/next-tick-style.md | 6 +++++- docs/rules/no-async-in-computed-properties.md | 4 ++-- docs/rules/no-constant-condition.md | 7 +++++-- docs/rules/no-side-effects-in-computed-properties.md | 4 ++-- docs/rules/return-in-computed-property.md | 4 ++-- docs/rules/valid-next-tick.md | 6 +++++- package.json | 2 +- 7 files changed, 22 insertions(+), 11 deletions(-) diff --git a/docs/rules/next-tick-style.md b/docs/rules/next-tick-style.md index 52188fd06..2f17f2dd4 100644 --- a/docs/rules/next-tick-style.md +++ b/docs/rules/next-tick-style.md @@ -3,12 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/next-tick-style description: enforce Promise or callback style in `nextTick` +since: v7.5.0 --- # vue/next-tick-style > enforce Promise or callback style in `nextTick` -- :exclamation: ***This rule has not been released yet.*** - :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. ## :book: Rule Details @@ -97,6 +97,10 @@ export default { - [Global `nextTick` API in Vue 3](https://v3.vuejs.org/api/global-api.html#nexttick) - [Instance `$nextTick` API in Vue 3](https://v3.vuejs.org/api/instance-methods.html#nexttick) +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v7.5.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/next-tick-style.js) diff --git a/docs/rules/no-async-in-computed-properties.md b/docs/rules/no-async-in-computed-properties.md index 549dc2013..ac7ac50f2 100644 --- a/docs/rules/no-async-in-computed-properties.md +++ b/docs/rules/no-async-in-computed-properties.md @@ -2,12 +2,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-async-in-computed-properties -description: disallow asynchronous actions in computed properties and functions +description: disallow asynchronous actions in computed properties since: v3.8.0 --- # vue/no-async-in-computed-properties -> disallow asynchronous actions in computed properties and functions +> disallow asynchronous actions in computed properties - :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"`. diff --git a/docs/rules/no-constant-condition.md b/docs/rules/no-constant-condition.md index 901b2a401..54f6df9d0 100644 --- a/docs/rules/no-constant-condition.md +++ b/docs/rules/no-constant-condition.md @@ -3,13 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-constant-condition description: disallow constant expressions in conditions +since: v7.5.0 --- # vue/no-constant-condition > disallow constant expressions in conditions -- :exclamation: ***This rule has not been released yet.*** - This rule is the same rule as core [no-constant-condition] rule but it applies to the expressions in `