Skip to content

Commit c387fc3

Browse files
committed
7.4.0
1 parent f934005 commit c387fc3

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

docs/rules/no-restricted-block.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-block
55
description: disallow specific block
6+
since: v7.4.0
67
---
78
# vue/no-restricted-block
89

910
> disallow specific block
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 block names that you don't want to use in your application.
@@ -82,6 +81,10 @@ The following properties can be specified for the object.
8281

8382
</eslint-code-block>
8483

84+
## :rocket: Version
85+
86+
This rule was introduced in eslint-plugin-vue v7.4.0
87+
8588
## :mag: Implementation
8689

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

docs/rules/no-restricted-call-after-await.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-call-after-await
55
description: disallow asynchronously called restricted methods
6+
since: v7.4.0
67
---
78
# vue/no-restricted-call-after-await
89

910
> disallow asynchronously called restricted methods
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 reports your restricted calls after the `await` expression.
@@ -92,6 +91,10 @@ export default {
9291

9392
</eslint-code-block>
9493

94+
## :rocket: Version
95+
96+
This rule was introduced in eslint-plugin-vue v7.4.0
97+
9598
## :mag: Implementation
9699

97100
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-restricted-call-after-await.js)

docs/rules/v-on-event-hyphenation.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/v-on-event-hyphenation
55
description: enforce v-on event naming style on custom components in template
6+
since: v7.4.0
67
---
78
# vue/v-on-event-hyphenation
89

910
> enforce v-on event naming style on custom components in template
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
@@ -113,6 +113,10 @@ Don't use hyphenated name but allow custom event names
113113
- [vue/custom-event-name-casing](./custom-event-name-casing.md)
114114
- [vue/attribute-hyphenation](./attribute-hyphenation.md)
115115

116+
## :rocket: Version
117+
118+
This rule was introduced in eslint-plugin-vue v7.4.0
119+
116120
## :mag: Implementation
117121

118122
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/v-on-event-hyphenation.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.3.0",
3+
"version": "7.4.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)