Skip to content

Commit 33f1d18

Browse files
Version Packages
1 parent 3bf079c commit 33f1d18

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

.changeset/neat-coats-allow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/ten-lines-fail.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# eslint-plugin-vue
22

3+
## 10.6.0
4+
5+
### Minor Changes
6+
7+
- Added new [`vue/no-duplicate-class-names`](https://eslint.vuejs.org/rules/no-duplicate-class-names.html) rule ([#2934](https://github.com/vuejs/eslint-plugin-vue/pull/2934))
8+
9+
### Patch Changes
10+
11+
- Updated dependency [postcss-selector-parser](https://github.com/postcss/postcss-selector-parser) to v7.1.0 ([#2947](https://github.com/vuejs/eslint-plugin-vue/pull/2947))
12+
313
## 10.5.1
414

515
### Patch Changes

docs/rules/no-duplicate-class-names.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-duplicate-class-names
55
description: disallow duplication of class names in class attributes
6+
since: v10.6.0
67
---
78

89
# vue/no-duplicate-class-names
910

1011
> disallow duplication of class names in class attributes
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> _**This rule has not been released yet.**_ </badge>
1313
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fix-problems) can automatically fix some of the problems reported by this rule.
1414

1515
## :book: Rule Details
@@ -51,6 +51,10 @@ This rule prevents the same class name from appearing multiple times within the
5151

5252
Nothing.
5353

54+
## :rocket: Version
55+
56+
This rule was introduced in eslint-plugin-vue v10.6.0
57+
5458
## :mag: Implementation
5559

5660
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-duplicate-class-names.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": "10.5.1",
3+
"version": "10.6.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

0 commit comments

Comments
 (0)