Update typescript eslint dependencies#5938
Merged
canova merged 2 commits intofirefox-devtools:mainfrom Apr 7, 2026
Merged
Conversation
`yarn lint-js` was showing a warning, saying that the version of typescript wasn't supported. This was due to the fact that `@typescript-eslint` didn't officially support TS 6. This is now resolved in the new versions.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5938 +/- ##
=======================================
Coverage 85.45% 85.45%
=======================================
Files 321 321
Lines 32139 32139
Branches 8850 8848 -2
=======================================
Hits 27463 27463
Misses 4241 4241
Partials 435 435 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
fatadel
approved these changes
Apr 7, 2026
Contributor
fatadel
left a comment
There was a problem hiding this comment.
I could reproduce what you wrote 👍🏻 Thanks for fixing!
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.
yarn lint-jswas showing a warning saying that the version of typescript wasn't supported. This was due to the fact that@typescript-eslintdidn't officially support TS 6. This is now resolved in the new versions.I thought I solved it while I was working on the TS 6 upgrade, but apparently not...
This is the warning when you run
yarn lint(you might need torm .eslintcacheto see it):Now the warning should be gone.