chore: upgrade ESLint toolchain to v10#179
Merged
josecelano merged 1 commit intodevelopfrom Feb 25, 2026
Merged
Conversation
Upgrades all ESLint-related packages to their next major versions: - eslint: ^9.39.3 → ^10.0.2 - @eslint/js: ^9.39.3 → ^10.0.1 - @eslint/compat: ^1.4.1 → ^2.0.2 - eslint-plugin-svelte: ^2.46.1 → ^3.15.0 - svelte-eslint-parser: ^0.43.0 → ^1.5.1 - globals: ^15.15.0 → ^17.3.0 - eslint-config-eslint: removed (was unused — not imported in eslint.config.js) No changes to eslint.config.js were needed: - The project already uses flat config format (eslint.config.js), so the 'old config format no longer supported' breaking change does not apply. - The --ignore-pattern CLI flag is still supported in v10. - No new rules from eslint:recommended triggered errors in this codebase. All checks pass: - svelte-check: 0 errors, 0 warnings - build: success - lint: success (Prettier + ESLint v10) Closes #171 Part of epic #174
Member
Author
|
ACK 87f629e |
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.
Overview
Upgrades the full ESLint toolchain to their next major versions. All packages updated together due to tight peer dependencies.
Part of epic #174.
Closes #171
Package Changes
eslint^9.39.3^10.0.2@eslint/js^9.39.3^10.0.1@eslint/compat^1.4.1^2.0.2eslint-plugin-svelte^2.46.1^3.15.0svelte-eslint-parser^0.43.0^1.5.1globals^15.15.0^17.3.0eslint-config-eslint^11.0.0Notes
eslint-config-eslintwas not imported anywhere ineslint.config.jsor the codebase, so it was removed as an unused dependency. (Also, its latest releasev13.0.0still pegseslint@^9, so it cannot be upgraded alongside ESLint v10 at this time.)eslint.config.jswere needed:eslint.config.js), so the "old config format no longer supported" breaking change does not apply.--ignore-patternCLI flag used in thelintscript is still supported in v10.eslint:recommendedtriggered errors in this codebase.Testing Checklist
npm run lintpasses (Prettier + ESLint v10)npm run checkpasses (0 errors, 0 warnings)npm run buildsucceeds