Skip to content

Commit 90a6aaf

Browse files
Version Packages
1 parent 371913a commit 90a6aaf

File tree

8 files changed

+22
-28
lines changed

8 files changed

+22
-28
lines changed

.changeset/brown-eels-care.md

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

.changeset/fast-monkeys-smoke.md

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

.changeset/gorgeous-colts-bathe.md

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

.changeset/rich-zebras-type.md

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

.changeset/swift-spies-nail.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.7.0
4+
5+
### Minor Changes
6+
7+
- Added [new `-error` config variants](https://eslint.vuejs.org/user-guide/#bundle-configurations-eslint-config-js), with all rules' severity set to `error`: `strongly-recommended-error`, `recommended-error`, `vue2-strongly-recommended-error`, `vue2-recommended-error` (along with their flat config equivalents) ([#2796](https://github.com/vuejs/eslint-plugin-vue/pull/2796))
8+
9+
- Added new [`vue/no-undef-directives`](https://eslint.vuejs.org/rules/no-undef-directives.html) rule ([#2990](https://github.com/vuejs/eslint-plugin-vue/pull/2990))
10+
11+
- Changed [`vue/no-negated-v-if-condition`](https://eslint.vuejs.org/rules/no-negated-v-if-condition.html) suggestion to autofix ([#2984](https://github.com/vuejs/eslint-plugin-vue/pull/2984))
12+
13+
- Added new `ignoreEOLComments` option to [`vue/no-multi-spaces`](https://eslint.vuejs.org/rules/no-multi-spaces.html) rule ([#2989](https://github.com/vuejs/eslint-plugin-vue/pull/2989))
14+
15+
### Patch Changes
16+
17+
- Updates resources ([#2986](https://github.com/vuejs/eslint-plugin-vue/pull/2986))
18+
319
## 10.6.2
420

521
### Patch Changes

docs/rules/no-undef-directives.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-undef-directives
55
description: disallow use of undefined custom directives
6+
since: v10.7.0
67
---
78

89
# vue/no-undef-directives
910

1011
> disallow use of undefined custom directives
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 reports directives that are used in the `<template>`, but that are not registered in the `<script setup>` or the Options API's `directives` section.
@@ -84,6 +83,10 @@ export default {
8483

8584
</eslint-code-block>
8685

86+
## :rocket: Version
87+
88+
This rule was introduced in eslint-plugin-vue v10.7.0
89+
8790
## :mag: Implementation
8891

8992
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-undef-directives.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.6.2",
3+
"version": "10.7.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)