Skip to content

Commit 15185f5

Browse files
Version Packages (#2792)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 87c7d83 commit 15185f5

9 files changed

+27
-29
lines changed

.changeset/beige-teams-camp.md

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

.changeset/early-worlds-reply.md

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

.changeset/eight-camels-refuse.md

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

.changeset/strong-masks-fetch.md

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

.changeset/true-pumas-open.md

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

CHANGELOG.md

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

3+
## 10.4.0
4+
5+
### Minor Changes
6+
7+
- Added `ignoreParents` option to [`vue/no-deprecated-slot-attribute`](https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html) ([#2784](https://github.com/vuejs/eslint-plugin-vue/pull/2784))
8+
9+
- Added new [`vue/no-negated-v-if-condition`](https://eslint.vuejs.org/rules/no-negated-v-if-condition.html) rule ([#2794](https://github.com/vuejs/eslint-plugin-vue/pull/2794))
10+
11+
- Added new [`vue/no-negated-condition`](https://eslint.vuejs.org/rules/no-negated-condition.html) rule ([#2795](https://github.com/vuejs/eslint-plugin-vue/pull/2795))
12+
13+
### Patch Changes
14+
15+
- Resolved TypeScript compatibility issues introduced by eslint-typegen ([#2790](https://github.com/vuejs/eslint-plugin-vue/pull/2790))
16+
17+
- Fixed inconsistent quotes in [`vue/block-lang`](https://eslint.vuejs.org/rules/block-lang.html) error messages ([#2805](https://github.com/vuejs/eslint-plugin-vue/pull/2805))
18+
319
## 10.3.0
420

521
### Minor Changes

docs/rules/no-negated-condition.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-negated-condition
55
description: Disallow negated conditions in `<template>`
6+
since: v10.4.0
67
---
78

89
# vue/no-negated-condition
910

1011
> Disallow negated conditions in `<template>`
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> _**This rule has not been released yet.**_ </badge>
13-
1413
## :book: Rule Details
1514

1615
This rule is the same rule as core [no-negated-condition] rule but it applies to the expressions in `<template>`.
@@ -26,6 +25,10 @@ This rule is the same rule as core [no-negated-condition] rule but it applies to
2625

2726
[no-negated-condition]: https://eslint.org/docs/rules/no-negated-condition
2827

28+
## :rocket: Version
29+
30+
This rule was introduced in eslint-plugin-vue v10.4.0
31+
2932
## :mag: Implementation
3033

3134
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-negated-condition.js)

docs/rules/no-negated-v-if-condition.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-negated-v-if-condition
55
description: disallow negated conditions in v-if/v-else
6+
since: v10.4.0
67
---
78

89
# vue/no-negated-v-if-condition
910

1011
> disallow negated conditions in v-if/v-else
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
- :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

1515
## :book: Rule Details
@@ -58,6 +58,10 @@ Nothing.
5858
- [vue/no-negated-condition](https://eslint.vuejs.org/rules/no-negated-condition.html)
5959
- [unicorn/no-negated-condition](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-negated-condition.md)
6060

61+
## :rocket: Version
62+
63+
This rule was introduced in eslint-plugin-vue v10.4.0
64+
6165
## :mag: Implementation
6266

6367
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-negated-v-if-condition.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.3.0",
3+
"version": "10.4.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)