Skip to content

Commit 83290b7

Browse files
committed
8.6.0
1 parent 4dfbe33 commit 83290b7

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

docs/rules/no-restricted-html-elements.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-restricted-html-elements
55
description: disallow specific HTML elements
6+
since: v8.6.0
67
---
78
# vue/no-restricted-html-elements
89

910
> disallow specific HTML elements
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
## :book: Rule Details
1413

1514
This rule allows you to specify HTML elements that you don't want to use in your application.
@@ -90,6 +89,10 @@ The following properties can be specified for the object.
9089

9190
</eslint-code-block>
9291

92+
## :rocket: Version
93+
94+
This rule was introduced in eslint-plugin-vue v8.6.0
95+
9396
## :mag: Implementation
9497

9598
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-restricted-html-elements.js)

docs/rules/prefer-prop-type-boolean-first.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-prop-type-boolean-first
55
description: enforce `Boolean` comes first in component prop types
6+
since: v8.6.0
67
---
78
# vue/prefer-prop-type-boolean-first
89

910
> enforce `Boolean` comes first in component prop types
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
@@ -54,6 +54,10 @@ export default {
5454

5555
- [vue/prefer-true-attribute-shorthand](./prefer-true-attribute-shorthand.md)
5656

57+
## :rocket: Version
58+
59+
This rule was introduced in eslint-plugin-vue v8.6.0
60+
5761
## :mag: Implementation
5862

5963
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/prefer-prop-type-boolean-first.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.5.0",
3+
"version": "8.6.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)