From c387fc343c12858b38587bb160d1e4bcba0ff50b Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Mon, 28 Dec 2020 08:25:44 +0900 Subject: [PATCH] 7.4.0 --- docs/rules/no-restricted-block.md | 7 +++++-- docs/rules/no-restricted-call-after-await.md | 7 +++++-- docs/rules/v-on-event-hyphenation.md | 6 +++++- package.json | 2 +- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/docs/rules/no-restricted-block.md b/docs/rules/no-restricted-block.md index f84b13746..cb6ab788b 100644 --- a/docs/rules/no-restricted-block.md +++ b/docs/rules/no-restricted-block.md @@ -3,13 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-restricted-block description: disallow specific block +since: v7.4.0 --- # vue/no-restricted-block > disallow specific block -- :exclamation: ***This rule has not been released yet.*** - ## :book: Rule Details 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. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v7.4.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-restricted-block.js) diff --git a/docs/rules/no-restricted-call-after-await.md b/docs/rules/no-restricted-call-after-await.md index 735fc87b0..f880f8f12 100644 --- a/docs/rules/no-restricted-call-after-await.md +++ b/docs/rules/no-restricted-call-after-await.md @@ -3,13 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-restricted-call-after-await description: disallow asynchronously called restricted methods +since: v7.4.0 --- # vue/no-restricted-call-after-await > disallow asynchronously called restricted methods -- :exclamation: ***This rule has not been released yet.*** - ## :book: Rule Details This rule reports your restricted calls after the `await` expression. @@ -92,6 +91,10 @@ export default { +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v7.4.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-restricted-call-after-await.js) diff --git a/docs/rules/v-on-event-hyphenation.md b/docs/rules/v-on-event-hyphenation.md index 92caed693..8e182be14 100644 --- a/docs/rules/v-on-event-hyphenation.md +++ b/docs/rules/v-on-event-hyphenation.md @@ -3,12 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/v-on-event-hyphenation description: enforce v-on event naming style on custom components in template +since: v7.4.0 --- # vue/v-on-event-hyphenation > enforce v-on event naming style on custom components in template -- :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 @@ -113,6 +113,10 @@ Don't use hyphenated name but allow custom event names - [vue/custom-event-name-casing](./custom-event-name-casing.md) - [vue/attribute-hyphenation](./attribute-hyphenation.md) +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v7.4.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/v-on-event-hyphenation.js) diff --git a/package.json b/package.json index c69d599d9..b907051f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "7.3.0", + "version": "7.4.0", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "scripts": {