Skip to content

Commit 1ece73e

Browse files
committed
7.19.0
1 parent 5788883 commit 1ece73e

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

docs/rules/no-restricted-class.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-restricted-class
55
description: disallow specific classes in Vue components
6+
since: v7.19.0
67
---
78
# vue/no-restricted-class
89

910
> disallow specific classes in Vue components
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 lets you specify a list of classes that you don't want to allow in your templates.
@@ -73,6 +72,10 @@ export default {
7372
```
7473
:::
7574

75+
## :rocket: Version
76+
77+
This rule was introduced in eslint-plugin-vue v7.19.0
78+
7679
## :mag: Implementation
7780

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

docs/rules/no-useless-template-attributes.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-useless-template-attributes
55
description: disallow useless attribute on `<template>`
6+
since: v7.19.0
67
---
78
# vue/no-useless-template-attributes
89

910
> disallow useless attribute on `<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>
12-
1312
## :book: Rule Details
1413

1514
This rule to prevent any useless attribute on `<template>` tags.
@@ -58,6 +57,10 @@ Nothing.
5857

5958
[vue/no-lone-template]: ./no-lone-template.md
6059

60+
## :rocket: Version
61+
62+
This rule was introduced in eslint-plugin-vue v7.19.0
63+
6164
## :mag: Implementation
6265

6366
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-useless-template-attributes.js)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-vue",
3-
"version": "7.18.0",
3+
"version": "7.19.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)