From 1ac1259e853884bddf15cc18b29bfc8cd3383aab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Oct 2025 15:13:32 +0000 Subject: [PATCH] Version Packages --- .changeset/ten-lines-fail.md | 5 ----- CHANGELOG.md | 6 ++++++ docs/rules/no-duplicate-class-names.md | 6 +++++- package.json | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) delete mode 100644 .changeset/ten-lines-fail.md diff --git a/.changeset/ten-lines-fail.md b/.changeset/ten-lines-fail.md deleted file mode 100644 index 7ba93232a..000000000 --- a/.changeset/ten-lines-fail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'eslint-plugin-vue': minor ---- - -Added new [`vue/no-duplicate-class-names`](https://eslint.vuejs.org/rules/no-duplicate-class-names.html) rule diff --git a/CHANGELOG.md b/CHANGELOG.md index b4caed28b..46700c30e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # eslint-plugin-vue +## 10.6.0 + +### Minor Changes + +- 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)) + ## 10.5.1 ### Patch Changes diff --git a/docs/rules/no-duplicate-class-names.md b/docs/rules/no-duplicate-class-names.md index ab0161f06..033ad5169 100644 --- a/docs/rules/no-duplicate-class-names.md +++ b/docs/rules/no-duplicate-class-names.md @@ -3,13 +3,13 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-duplicate-class-names description: disallow duplication of class names in class attributes +since: v10.6.0 --- # vue/no-duplicate-class-names > disallow duplication of class names in class attributes -- :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#fix-problems) can automatically fix some of the problems reported by this rule. ## :book: Rule Details @@ -51,6 +51,10 @@ This rule prevents the same class name from appearing multiple times within the Nothing. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v10.6.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-duplicate-class-names.js) diff --git a/package.json b/package.json index 68f0b1419..179d4787d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "10.5.1", + "version": "10.6.0", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "types": "lib/index.d.ts",