Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f000613

Browse files
committedDec 6, 2021
8.2.0
1 parent 024c8d8 commit f000613

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed
 

‎docs/rules/component-options-name-casing.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/component-options-name-casing
55
description: enforce the casing of component name in `components` options
6+
since: v8.2.0
67
---
78
# vue/component-options-name-casing
89

910
> enforce the casing of component name in `components` options
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
- :bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
1414

@@ -159,6 +159,10 @@ export default {
159159

160160
</eslint-code-block>
161161

162+
## :rocket: Version
163+
164+
This rule was introduced in eslint-plugin-vue v8.2.0
165+
162166
## :mag: Implementation
163167

164168
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/component-options-name-casing.js)

‎docs/rules/prefer-separate-static-class.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/prefer-separate-static-class
55
description: require static class names in template to be in a separate `class` attribute
6+
since: v8.2.0
67
---
78
# vue/prefer-separate-static-class
89

910
> require static class names in template to be in a separate `class` attribute
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
@@ -37,6 +37,10 @@ This rule reports static class names in dynamic class attributes.
3737

3838
Nothing.
3939

40+
## :rocket: Version
41+
42+
This rule was introduced in eslint-plugin-vue v8.2.0
43+
4044
## :mag: Implementation
4145

4246
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/prefer-separate-static-class.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": "8.1.1",
3+
"version": "8.2.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)
Please sign in to comment.