chore(deps): update dependency eslint-plugin-vue to v10 #410

Closed
RenovateBot wants to merge 1 commit from renovate/eslint-plugin-vue-10.x into develop
Collaborator

This PR contains the following updates:

Package Type Update Change
eslint-plugin-vue (source) devDependencies major ^9.32.0 -> ^10.0.0

Release Notes

vuejs/eslint-plugin-vue (eslint-plugin-vue)

v10.8.0

Compare Source

Minor Changes
Patch Changes

v10.7.0

Compare Source

Minor Changes
Patch Changes
  • Fixed false positives in vue/define-props-destructuring rule when imported types are passed to defineProps (#​2995)
  • Updated Vue 3 export names resources: added DirectiveModifiers (#​2996)
  • Updated Vue 3 export names resources: added nodeOps and patchProp (#​2986)

v10.6.2

Compare Source

Patch Changes

v10.6.1

Compare Source

Patch Changes

v10.6.0

Compare Source

Minor Changes
Patch Changes

v10.5.1

Compare Source

Patch Changes

v10.5.0

Compare Source

Minor Changes
Patch Changes

v10.4.0

Compare Source

Minor Changes
Patch Changes

v10.3.0

Compare Source

Minor Changes
Patch Changes

v10.2.0

Compare Source

Minor Changes
Patch Changes

v10.1.0

Compare Source

Enhancements

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v10.0.1...v10.1.0

v10.0.1

Compare Source

🐛 Bug Fixes

⚙️ Updates

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v10.0.0...v10.0.1

v10.0.0

Compare Source

💥 Breaking changes

Enhancements

⚙️ Updates

  • #​2171 Updated resources.
  • #​2675 Deprecated Vue 2 only rules. They will be removed in eslint-plugin-vue v11.

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.33.0...v10.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [eslint-plugin-vue](https://eslint.vuejs.org) ([source](https://github.com/vuejs/eslint-plugin-vue)) | devDependencies | major | [`^9.32.0` -> `^10.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-vue/9.33.0/10.8.0) | --- ### Release Notes <details> <summary>vuejs/eslint-plugin-vue (eslint-plugin-vue)</summary> ### [`v10.8.0`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1080) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.7.0...v10.8.0) ##### Minor Changes - Added [ESLint v10](https://eslint.org/blog/2026/02/eslint-v10.0.0-released/) as an allowed peer dependency (needs [`eslint-parser-vue` v10.3.0](https://github.com/vuejs/vue-eslint-parser/releases/tag/v10.3.0)) ([#&#8203;2962](https://github.com/vuejs/eslint-plugin-vue/pull/2962)) - Added more `Promise` functions to [`vue/no-async-in-computed-properties`](https://eslint.vuejs.org/rules/no-async-in-computed-properties.html) ([#&#8203;3020](https://github.com/vuejs/eslint-plugin-vue/pull/3020)) - Added `ignoreVBindObject` option to [`vue/attributes-order`](https://eslint.vuejs.org/rules/attributes-order.html) ([#&#8203;3012](https://github.com/vuejs/eslint-plugin-vue/pull/3012)) - Added `allowEmptyAlias` option to [`vue/valid-v-for`](https://eslint.vuejs.org/rules/valid-v-for.html) ([#&#8203;3011](https://github.com/vuejs/eslint-plugin-vue/pull/3011)) - Added new `destructure: "only-when-assigned"` option to [`vue/define-props-destructuring`](https://eslint.vuejs.org/rules/define-props-destructuring.html) and changed default value from `destructure: "always"` to `destructure: "only-when-assigned"` ([#&#8203;3009](https://github.com/vuejs/eslint-plugin-vue/pull/3009)) ##### Patch Changes - Fixed [`vue/no-unused-vars`](https://eslint.vuejs.org/rules/no-unused-vars.html) to detect components passed as slot props ([#&#8203;3008](https://github.com/vuejs/eslint-plugin-vue/pull/3008)) ### [`v10.7.0`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1070) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.6.2...v10.7.0) ##### Minor Changes - 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) ([#&#8203;2796](https://github.com/vuejs/eslint-plugin-vue/pull/2796)) - Added new [`vue/no-literals-in-template`](https://eslint.vuejs.org/rules/no-literals-in-template.html) rule ([#&#8203;3000](https://github.com/vuejs/eslint-plugin-vue/pull/3000)) - Added new [`vue/no-undef-directives`](https://eslint.vuejs.org/rules/no-undef-directives.html) rule ([#&#8203;2990](https://github.com/vuejs/eslint-plugin-vue/pull/2990)) - Added new `ignoreEOLComments` option to [`vue/no-multi-spaces`](https://eslint.vuejs.org/rules/no-multi-spaces.html) rule ([#&#8203;2989](https://github.com/vuejs/eslint-plugin-vue/pull/2989)) - Changed [`vue/no-negated-v-if-condition`](https://eslint.vuejs.org/rules/no-negated-v-if-condition.html) suggestion to autofix ([#&#8203;2984](https://github.com/vuejs/eslint-plugin-vue/pull/2984)) - Added TypeScript support for eslint-plugin-vue development ([#&#8203;2916](https://github.com/vuejs/eslint-plugin-vue/pull/2916)) ##### Patch Changes - Fixed false positives in [`vue/define-props-destructuring`](https://eslint.vuejs.org/rules/define-props-destructuring.html) rule when imported types are passed to `defineProps` ([#&#8203;2995](https://github.com/vuejs/eslint-plugin-vue/pull/2995)) - Updated Vue 3 export names resources: added `DirectiveModifiers` ([#&#8203;2996](https://github.com/vuejs/eslint-plugin-vue/pull/2996)) - Updated Vue 3 export names resources: added `nodeOps` and `patchProp` ([#&#8203;2986](https://github.com/vuejs/eslint-plugin-vue/pull/2986)) ### [`v10.6.2`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1062) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.6.1...v10.6.2) ##### Patch Changes - Fixed false positives in non-intersecting conditions in [`vue/no-duplicate-class-names`](https://eslint.vuejs.org/rules/no-duplicate-class-names.html) and correctly detect duplicates in combining expressions ([#&#8203;2980](https://github.com/vuejs/eslint-plugin-vue/pull/2980)) - Fixed false positives for `TSImportType` in [`vue/script-indent`](https://eslint.vuejs.org/rules/script-indent.html) rule ([#&#8203;2969](https://github.com/vuejs/eslint-plugin-vue/pull/2969)) - Improved performance and type safety in [`vue/prefer-use-template-ref`](https://eslint.vuejs.org/rules/prefer-use-template-ref.html) ([#&#8203;2982](https://github.com/vuejs/eslint-plugin-vue/pull/2982)) ### [`v10.6.1`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1061) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.6.0...v10.6.1) ##### Patch Changes - Fixed false positives for comments outside `<template>` in [`vue/no-multiple-template-root`](https://eslint.vuejs.org/rules/no-multiple-template-root.html) rule ([#&#8203;2964](https://github.com/vuejs/eslint-plugin-vue/pull/2964)) ### [`v10.6.0`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1060) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.5.1...v10.6.0) ##### Minor Changes - Updated [`vue/no-import-compiler-macros`](https://eslint.vuejs.org/rules/no-import-compiler-macros.html) to clarify that macros are not allowed outside `<script setup>` ([#&#8203;2938](https://github.com/vuejs/eslint-plugin-vue/pull/2938)) - Added new [`vue/no-duplicate-class-names`](https://eslint.vuejs.org/rules/no-duplicate-class-names.html) rule ([#&#8203;2934](https://github.com/vuejs/eslint-plugin-vue/pull/2934)) ##### Patch Changes - Fixed [`vue/no-v-html`](https://eslint.vuejs.org/rules/no-v-html.html) rule to allow ignoring call expressions ([#&#8203;2950](https://github.com/vuejs/eslint-plugin-vue/pull/2950)) - Improved [`vue/define-macros-order`](https://eslint.vuejs.org/rules/define-macros-order.html) error messages to distinguish between macro placement and ordering issues ([#&#8203;2953](https://github.com/vuejs/eslint-plugin-vue/pull/2953)) - Updated dependency [postcss-selector-parser](https://github.com/postcss/postcss-selector-parser) to v7.1.0 ([#&#8203;2947](https://github.com/vuejs/eslint-plugin-vue/pull/2947)) ### [`v10.5.1`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1051) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.5.0...v10.5.1) ##### Patch Changes - Fixed [`vue/no-negated-v-if-condition`](https://eslint.vuejs.org/rules/no-negated-v-if-condition.html) rule to swap entire elements ([#&#8203;2941](https://github.com/vuejs/eslint-plugin-vue/pull/2941)) ### [`v10.5.0`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1050) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.4.0...v10.5.0) ##### Minor Changes - Added `ignoredObjectNames` option to [`vue/no-async-in-computed-properties`](https://eslint.vuejs.org/rules/no-async-in-computed-properties.html) ([#&#8203;2927](https://github.com/vuejs/eslint-plugin-vue/pull/2927)) - Added `ignorePattern` option to [`vue/no-v-html`](https://eslint.vuejs.org/rules/no-v-html.html) ([#&#8203;2857](https://github.com/vuejs/eslint-plugin-vue/pull/2857)) - Added `sortLineLength` option to [`vue/attributes-order`](https://eslint.vuejs.org/rules/attributes-order.html) ([#&#8203;2759](https://github.com/vuejs/eslint-plugin-vue/pull/2759)) - Changed [`vue/component-name-in-template-casing`](https://eslint.vuejs.org/rules/component-name-in-template-casing.html) `globals` option to support regex patterns ([#&#8203;2928](https://github.com/vuejs/eslint-plugin-vue/pull/2928)) - Changed [`vue/valid-define-options`](https://eslint.vuejs.org/rules/valid-define-options.html) to allow local literal constant references ([#&#8203;2920](https://github.com/vuejs/eslint-plugin-vue/pull/2920)) - Changed [`vue/no-mutating-props`](https://eslint.vuejs.org/rules/no-mutating-props.html) and [`vue/no-side-effects-in-computed-properties`](https://eslint.vuejs.org/rules/no-side-effects-in-computed-properties.html) rules to detect `Object.assign` mutations ([#&#8203;2929](https://github.com/vuejs/eslint-plugin-vue/pull/2929)) - Added [`@stylistic/eslint-plugin`](https://eslint.style/) as optional peer dependency ([#&#8203;2884](https://github.com/vuejs/eslint-plugin-vue/pull/2884)) ##### Patch Changes - Changed [`vue/define-macros-order`](https://eslint.vuejs.org/rules/define-macros-order.html) to ignore enum declarations and `declare` statements ([#&#8203;2918](https://github.com/vuejs/eslint-plugin-vue/pull/2918)) ### [`v10.4.0`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1040) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.3.0...v10.4.0) ##### Minor Changes - Added `ignoreParents` option to [`vue/no-deprecated-slot-attribute`](https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html) ([#&#8203;2784](https://github.com/vuejs/eslint-plugin-vue/pull/2784)) - Added new [`vue/no-negated-v-if-condition`](https://eslint.vuejs.org/rules/no-negated-v-if-condition.html) rule ([#&#8203;2794](https://github.com/vuejs/eslint-plugin-vue/pull/2794)) - Added new [`vue/no-negated-condition`](https://eslint.vuejs.org/rules/no-negated-condition.html) rule ([#&#8203;2795](https://github.com/vuejs/eslint-plugin-vue/pull/2795)) ##### Patch Changes - Resolved TypeScript compatibility issues introduced by [eslint-typegen](https://github.com/antfu/eslint-typegen) ([#&#8203;2790](https://github.com/vuejs/eslint-plugin-vue/pull/2790)) - Fixed inconsistent quotes in [`vue/block-lang`](https://eslint.vuejs.org/rules/block-lang.html) error messages ([#&#8203;2805](https://github.com/vuejs/eslint-plugin-vue/pull/2805)) ### [`v10.3.0`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1030) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.2.0...v10.3.0) ##### Minor Changes - Added [`@typescript-eslint/parser`](https://typescript-eslint.io/packages/parser) as an optional peer dependency ([#&#8203;2775](https://github.com/vuejs/eslint-plugin-vue/pull/2775)) - Add TypeScript IntelliSense support via [eslint-typegen](https://github.com/antfu/eslint-typegen) ([#&#8203;2770](https://github.com/vuejs/eslint-plugin-vue/pull/2770)) - [`vue/no-deprecated-slot-attribute`](https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html) `ignore` option now supports regex patterns ([#&#8203;2773](https://github.com/vuejs/eslint-plugin-vue/pull/2773)) ##### Patch Changes - Fixed false negatives when using typescript-eslint v8 in [`vue/script-indent`](https://eslint.vuejs.org/rules/script-indent.html) rule ([#&#8203;2775](https://github.com/vuejs/eslint-plugin-vue/pull/2775)) - Update resources ([#&#8203;2752](https://github.com/vuejs/eslint-plugin-vue/pull/2752)) - [`vue/no-restricted-html-elements`](https://eslint.vuejs.org/rules/no-restricted-html-elements.html) now also checks SVG and MathML elements ([#&#8203;2755](https://github.com/vuejs/eslint-plugin-vue/pull/2755)) ### [`v10.2.0`](https://github.com/vuejs/eslint-plugin-vue/blob/HEAD/CHANGELOG.md#1020) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.1.0...v10.2.0) ##### Minor Changes - [vue/no-restricted-html-elements](https://eslint.vuejs.org/rules/no-restricted-html-elements.html) now accepts multiple elements in each entry. ([#&#8203;2750](https://github.com/vuejs/eslint-plugin-vue/pull/2750)) ##### Patch Changes - Updates resources ([#&#8203;2747](https://github.com/vuejs/eslint-plugin-vue/pull/2747)) ### [`v10.1.0`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v10.1.0) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.0.1...v10.1.0) #### ✨ Enhancements - [#&#8203;2734](https://github.com/vuejs/eslint-plugin-vue/issues/2734) Improved `allowlist` option of [`vue/no-bare-strings-in-template`](https://eslint.vuejs.org/rules/no-bare-strings-in-template.html) rule to accept regex. - [#&#8203;2736](https://github.com/vuejs/eslint-plugin-vue/issues/2736) Added [`vue/define-props-destructuring`](https://eslint.vuejs.org/rules/define-props-destructuring.html) rule that enforce consistent style for props destructuring. - [#&#8203;2685](https://github.com/vuejs/eslint-plugin-vue/issues/2685) Added `disallowComments` option to [`vue/no-multiple-template-root`](https://eslint.vuejs.org/rules/no-multiple-template-root.html) rule. **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v10.0.1...v10.1.0 ### [`v10.0.1`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v10.0.1) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v10.0.0...v10.0.1) #### 🐛 Bug Fixes - [#&#8203;2700](https://github.com/vuejs/eslint-plugin-vue/issues/2700) Fixed incorrect type for `.eslintrc` configs. - [#&#8203;2703](https://github.com/vuejs/eslint-plugin-vue/issues/2703) Fixed false negatives for multiple script blocks in [`vue/prefer-use-template-ref`](https://eslint.vuejs.org/rules/prefer-use-template-ref.html) rule. - [#&#8203;2726](https://github.com/vuejs/eslint-plugin-vue/issues/2726) Fixed false positives for tagged template expressions in [`vue/no-ref-as-operand`](https://eslint.vuejs.org/rules/no-ref-as-operand.html) rule. - [#&#8203;2728](https://github.com/vuejs/eslint-plugin-vue/issues/2728) Fixed false negatives for props destructure in [`vue/require-default-prop`](https://eslint.vuejs.org/rules/require-default-prop.html) rule. - [#&#8203;2731](https://github.com/vuejs/eslint-plugin-vue/issues/2731) Fixed false positives for renamed props in [`vue/no-dupe-keys`](https://eslint.vuejs.org/rules/no-dupe-keys.html) rule. #### ⚙️ Updates - [#&#8203;2701](https://github.com/vuejs/eslint-plugin-vue/issues/2701) Improved the report location for [`vue/no-export-in-script-setup`](https://eslint.vuejs.org/rules/no-export-in-script-setup.html) rule. - [#&#8203;2724](https://github.com/vuejs/eslint-plugin-vue/issues/2724) Improved the report location for [`vue/html-self-closing`](https://eslint.vuejs.org/rules/html-self-closing.html) rule. **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v10.0.0...v10.0.1 ### [`v10.0.0`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v10.0.0) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v9.33.0...v10.0.0) #### 💥 Breaking changes - [#&#8203;2630](https://github.com/vuejs/eslint-plugin-vue/issues/2630) Changed Versioning Policy: - Allow minor versions of this plugin to enhance the checks for new features in Vue and Nuxt. - Allow updating deprecated/reserved HTML+SVG element tag names in minor versions, see [#&#8203;2171](https://github.com/vuejs/eslint-plugin-vue/issues/2171). - [#&#8203;2645](https://github.com/vuejs/eslint-plugin-vue/issues/2645) Removed deprecated rules (see [removed rules](https://eslint.vuejs.org/rules/#removed)). - [#&#8203;2669](https://github.com/vuejs/eslint-plugin-vue/issues/2669) Dropped support for old versions of ESLint and Node.js. New minimum requirements: - Node.js: `^18.18.0 || ^20.9.0 || >=21.1.0` - ESLint: `^8.57.0 || ^9.0.0` - Updated configs: - [#&#8203;2627](https://github.com/vuejs/eslint-plugin-vue/issues/2627) Added [`vue/block-order`](https://eslint.vuejs.org/rules/block-order.html) rule to recommended configs (replaces the removed `vue/component-tags-order` rule). - [#&#8203;2628](https://github.com/vuejs/eslint-plugin-vue/issues/2628) Added [`vue/no-deprecated-delete-set`](https://eslint.vuejs.org/rules/no-deprecated-delete-set.html) rule to vue3-essential config. - [#&#8203;2629](https://github.com/vuejs/eslint-plugin-vue/issues/2629) Added [`vue/no-deprecated-model-definition`](https://eslint.vuejs.org/rules/no-deprecated-model-definition.html) rule to vue3-essential config. - [#&#8203;2640](https://github.com/vuejs/eslint-plugin-vue/issues/2640) Added [`vue/no-required-prop-with-default`](https://eslint.vuejs.org/rules/no-required-prop-with-default.html) rule to recommended configs. - [#&#8203;2653](https://github.com/vuejs/eslint-plugin-vue/issues/2653) Added [`vue/valid-define-options`](https://eslint.vuejs.org/rules/valid-define-options.html) rule to vue3-essential config. - [#&#8203;2674](https://github.com/vuejs/eslint-plugin-vue/issues/2674) Removed globals from configs. You may need to configure them manually now, see <https://eslint.org/docs/latest/use/configure/language-options#predefined-global-variables>. - [#&#8203;2648](https://github.com/vuejs/eslint-plugin-vue/issues/2648) Renamed `.eslintrc` configs (to match `eslint.config.js` config names; see PR for comparison). - [#&#8203;2668](https://github.com/vuejs/eslint-plugin-vue/issues/2668) Changed `.eslintrc` base config so that [vue-eslint-parser](https://github.com/vuejs/vue-eslint-parser) is only used for `.vue` files. - [#&#8203;2670](https://github.com/vuejs/eslint-plugin-vue/issues/2670) Changed [vue-eslint-parser](https://github.com/vuejs/vue-eslint-parser) to peer dependency. - [#&#8203;2697](https://github.com/vuejs/eslint-plugin-vue/issues/2697) Upgraded [vue-eslint-parser](https://github.com/vuejs/vue-eslint-parser) to v10. - This includes https://github.com/vuejs/vue-eslint-parser/pull/195, which should make the parser much faster for large TypeScript projects :zap: - [#&#8203;2153](https://github.com/vuejs/eslint-plugin-vue/issues/2153) Added `slots` and `expose` to the default order of [`vue/order-in-components`](https://eslint.vuejs.org/rules/order-in-components.html) rule. - [#&#8203;2626](https://github.com/vuejs/eslint-plugin-vue/issues/2626) Removed legacy option from [`vue/custom-event-name-casing`](https://eslint.vuejs.org/rules/custom-event-name-casing.html) rule. - [#&#8203;2655](https://github.com/vuejs/eslint-plugin-vue/issues/2655) Removed unused `runOutsideVue` option from [`vue/sort-keys`](https://eslint.vuejs.org/rules/sort-keys.html) rule. - [#&#8203;2652](https://github.com/vuejs/eslint-plugin-vue/issues/2652) Removed `setup-compiler-macros` environments. #### ✨ Enhancements - [#&#8203;2693](https://github.com/vuejs/eslint-plugin-vue/issues/2693) Improved type resolution for generic types and improved the rules for checking type-only macros. - [#&#8203;2684](https://github.com/vuejs/eslint-plugin-vue/issues/2684) Added [`vue/no-import-compiler-macros`](https://eslint.vuejs.org/rules/no-import-compiler-macros.html) rule that disallows importing Vue compiler macros. - [#&#8203;2694](https://github.com/vuejs/eslint-plugin-vue/issues/2694) Added `except` option to [`vue/prefer-true-attribute-shorthand`](https://eslint.vuejs.org/rules/prefer-true-attribute-shorthand.html) rule. - [#&#8203;2311](https://github.com/vuejs/eslint-plugin-vue/issues/2311) Improved the plugin to check for objects declared with Nuxt3 [`defineNuxtComponent()`](https://nuxt.com/docs/api/utils/define-nuxt-component). #### ⚙️ Updates - [#&#8203;2171](https://github.com/vuejs/eslint-plugin-vue/issues/2171) Updated resources. - [#&#8203;2675](https://github.com/vuejs/eslint-plugin-vue/issues/2675) Deprecated Vue 2 only rules. They will be removed in eslint-plugin-vue v11. **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v9.33.0...v10.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNDAuMSIsInVwZGF0ZWRJblZlciI6IjM5LjI0MC4xIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6WyJkZXBlbmRlbmN5Il19-->
RenovateBot force-pushed renovate/eslint-plugin-vue-10.x from 21504bc0b5
Some checks are pending
ci/woodpecker/pr/build Pipeline is pending approval
ci/woodpecker/pr/security Pipeline is pending approval
to db2adfcdd0
Some checks are pending
ci/woodpecker/pr/build Pipeline is pending approval
ci/woodpecker/pr/security Pipeline is pending approval
2025-09-29 10:07:46 +02:00
Compare
deblan closed this pull request 2026-02-27 09:37:56 +01:00
Author
Collaborator

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 10.x releases. But if you manually upgrade to 10.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

### Renovate Ignore Notification Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for *any* future `10.x` releases. But if you manually upgrade to `10.x` then Renovate will re-enable `minor` and `patch` updates automatically. If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.
Some checks are pending
ci/woodpecker/pr/build Pipeline is pending approval
ci/woodpecker/pr/security Pipeline is pending approval
ci/woodpecker/push/woodpecker
Required
ci/woodpecker/pr/woodpecker
Required

Pull request closed

Sign in to join this conversation.
No description provided.