Skip to content

Commit 2377cfa

Browse files
committed
8.5.0
1 parent 1bb4edd commit 2377cfa

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

docs/rules/prefer-import-from-vue.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/prefer-import-from-vue
55
description: enforce import from 'vue' instead of import from '@vue/*'
6+
since: v8.5.0
67
---
78
# vue/prefer-import-from-vue
89

910
> enforce import from 'vue' instead of import from '@vue/*'
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
@@ -46,6 +46,10 @@ import { ref } from '@vue/reactivity'
4646

4747
Nothing.
4848

49+
## :rocket: Version
50+
51+
This rule was introduced in eslint-plugin-vue v8.5.0
52+
4953
## :mag: Implementation
5054

5155
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/prefer-import-from-vue.js)

docs/rules/prefer-true-attribute-shorthand.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/prefer-true-attribute-shorthand
55
description: require shorthand form attribute when `v-bind` value is `true`
6+
since: v8.5.0
67
---
78
# vue/prefer-true-attribute-shorthand
89

910
> require shorthand form attribute when `v-bind` value is `true`
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
- :bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
1313

1414
## :book: Rule Details
@@ -104,6 +104,10 @@ Default options is `"always"`.
104104

105105
</eslint-code-block>
106106

107+
## :rocket: Version
108+
109+
This rule was introduced in eslint-plugin-vue v8.5.0
110+
107111
## :mag: Implementation
108112

109113
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/prefer-true-attribute-shorthand.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": "8.4.1",
3+
"version": "8.5.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)