feat!: support and require ESLint 10 - #19
Merged
Merged
Conversation
ItsChaceD
marked this pull request as ready for review
September 2, 2026 15:11
ItsChaceD
requested review from
OS-pedrogustavobilro,
OS-ruimoreiramendes,
andredestro,
jcesarmobile,
markemer and
theproducer
September 2, 2026 15:11
OS-pedrogustavobilro
left a comment
There was a problem hiding this comment.
Haven't tested out the updated rules or eslint 9/10 yet, these comments are more "broad" I suppose.
Closed
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.
Description
ESLint 10 dropped the old config format, so 0.4.0 cannot load on it at all. This rewrites both entry points in the new format and moves the dependencies to versions that work with it.
The only dependency actually replaced is
eslint-plugin-import, which npm refuses to install alongside ESLint 10 (import-js/eslint-plugin-import#3227). It becomeseslint-plugin-import-x. Everything else is a version bump, plus@eslint/js, which is where the recommended core rules now live.BREAKING CHANGE: consumers must be on ESLint 10 and add an
eslint.configfile. TheeslintConfigfield inpackage.jsonand.eslintignoreare no longer supported.Change Type
Rationale / Problems Fixed
https://outsystemsrd.atlassian.net/browse/RMET-5184
Tests or Reproductions
Checked against the Capacitor core and CLI on ESLint 10
Platforms Affected
Notes / Comments