-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Fix ESLint v10 RuleContext API removal (follow-up to #3972) #3979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ledsun
wants to merge
19
commits into
jsx-eslint:master
Choose a base branch
from
ledsun:update-deprecated-calls-v8
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+79
−11
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
69b7fc4
Update types and RuleContext deprecations
tylermumford 9c686b5
Addresses the feedback provided in the comments on
ledsun a7b967b
Add ESLint 10 to the Node 18+ CI matrix
ledsun 9932114
ci(types): split type-check matrix by ESLint major (7/10)
ledsun 54908ab
fix(types): align rule context usage with ESLint 10 typings
ledsun 56cd100
chore: add ESLint v10 support to package.json
ledsun d143827
chore: Add ESLint v10 support to peer dependency
ledsun 4b2162e
ci(type-check): install eslint before typescript in test-published-types
ledsun 1cbaa2f
ci(type-check): limit ESLint 10 matrix to TypeScript 5+
ledsun 4daabd7
Apply suggestions from code review
ledsun ce94759
Fix getFilename utility and import usage in version resolver
ledsun 33e30c8
Reverse unintended changes
ledsun 745d588
fix(types): avoid RulesMetaDocs excess-property check in makeNoMethod…
ledsun 3023a29
chore(peer-deps): drop eslint v10 from declared support range
ledsun 808ca3c
chore(dev-deps): drop eslint v10 from development range
ledsun 15a8614
refactor(version): import only getFilename from eslint util
ledsun 3fbb319
ci: run ESLint 10 matrix jobs on Node 20+ only
ledsun 939967d
ci: exclude ESLint 10 + babel-eslint 8 from matrix
ledsun a3a41eb
ci: use @typescript-eslint/parser@canary for ESLint 10 as temporary w…
ledsun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| import '@eslint/core'; | ||
|
|
||
| declare module '@eslint/core' { | ||
| interface SettingsConfig { | ||
| react?: { | ||
| pragma?: string; | ||
| fragment?: string; | ||
| createClass?: string; | ||
| }; | ||
| } | ||
| } | ||
|
|
||
| export {}; |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you'll also need to exclude eslint 10 on node < 20