Fix PR #60: upgrade eslint-plugin-vue to v10 with required dependency updates#63
Draft
Copilot wants to merge 1 commit into
Draft
Fix PR #60: upgrade eslint-plugin-vue to v10 with required dependency updates#63Copilot wants to merge 1 commit into
Copilot wants to merge 1 commit into
Conversation
… updates Agent-Logs-Url: https://github.com/Health-RI/FAIRDataPoint-client/sessions/c8a21ccd-94ce-42d4-8e53-0962b0cc9ef3 Co-authored-by: hcvdwerf <26299191+hcvdwerf@users.noreply.github.com>
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates linting tooling to support eslint-plugin-vue v10, adds required parser and overrides to satisfy peer dependencies, configures npm to tolerate an optional TypeScript parser peer mismatch, and fixes a Vue template to comply with new linting rules so CI passes for the eslint-plugin-vue upgrade. File-Level Changes
|
Copilot created this pull request from a session on behalf of
hcvdwerf
May 8, 2026 14:24
View session
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes the failing CI from #60.
Problem
PR #60 (dependabot) bumps
eslint-plugin-vuefrom9.33.0to10.9.1, but CI fails with:eslint-plugin-vuev10 has several breaking changes that required additional dependency updates:@vue/eslint-config-airbnband@vue/eslint-config-typescriptboth declareeslint-plugin-vue@^9.xas a peer dep (no release yet supports v10)vue-eslint-parseris no longer bundled — it's now a required peer depeslintversion raised to^8.57.0@typescript-eslint/parser@^7||^8conflicts with installed v5Changes
package.json: bumpeslint-plugin-vueto^10.9.1, addvue-eslint-parser@^10.3.0, updateeslintto^8.57.0, add npmoverridesfor@vue/eslint-config-airbnband@vue/eslint-config-typescriptto allow eslint-plugin-vue v10.npmrc: addlegacy-peer-deps=trueto handle the optional@typescript-eslint/parserpeer dep conflict (v5 installed, v7/v8 required by eslint-plugin-vue@10)src/components/FormGenerator/index.vue: fixvue/no-v-for-template-key-on-childerror — move:keyfrom child elements to the<template v-for>tag (Vue 3 best practice, now enforced by v10)package-lock.json: updated accordinglySummary by Sourcery
Upgrade eslint-plugin-vue to v10 and adjust configuration to restore passing CI.
Enhancements:
Build: