chore(deps): update dependency oxlint-tsgolint to v7 - #1295
Open
renovate[bot] wants to merge 2 commits into
Open
renovate[bot] wants to merge 2 commits into
renovate[bot] wants to merge 2 commits into
Conversation
renovate
Bot
force-pushed
the
renovate/oxlint-tsgolint-7.x
branch
12 times, most recently
from
July 30, 2026 16:38
b1c2f0c to
4450a27
Compare
renovate
Bot
force-pushed
the
renovate/oxlint-tsgolint-7.x
branch
4 times, most recently
from
August 3, 2026 09:53
e060c1b to
9e6c32e
Compare
renovate
Bot
force-pushed
the
renovate/oxlint-tsgolint-7.x
branch
6 times, most recently
from
August 11, 2026 08:22
b75fef4 to
c58c866
Compare
renovate
Bot
force-pushed
the
renovate/oxlint-tsgolint-7.x
branch
4 times, most recently
from
August 18, 2026 12:33
30c89d8 to
0f502a0
Compare
renovate
Bot
force-pushed
the
renovate/oxlint-tsgolint-7.x
branch
2 times, most recently
from
August 25, 2026 15:12
174097c to
63973d9
Compare
renovate
Bot
force-pushed
the
renovate/oxlint-tsgolint-7.x
branch
12 times, most recently
from
September 8, 2026 18:05
088acf8 to
e4bf07c
Compare
renovate
Bot
force-pushed
the
renovate/oxlint-tsgolint-7.x
branch
15 times, most recently
from
September 15, 2026 10:22
99f2d71 to
935fecb
Compare
…ludes test/tsconfig.json includes ../src but pinned rootDir to ".", so every src file in the program sat outside rootDir (TS6059). tsgolint 0.22 swallowed tsconfig load errors; tsgolint 7 surfaces them, which broke `oxlint --type-aware`. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
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.
Note
quick fixes for renovate.
Diagnosis
The 5 errors at
test/tsconfig.json:0:0with empty messages were one TS6059 per offending root file, not 5 lint violations. The messages were lost in the GitHub Actions annotation, not by oxlint. Run locally, they read:The config is invalid on its own, independent of oxlint. Plain
tsc -p test/tsconfig.jsonreports the identical 5 errors onmastertoday, with tsgolint 0.22.1 still installed:So this is a latent misconfiguration that the upgrade exposed, not a tsgolint regression.
Ruled out:
types: ["vitest/globals"]—node_modules/vitest/globals.d.tsexists and resolves under vitest 5.oxlint@1.82.0drivesoxlint-tsgolint@7.0.2001fine. No peer warnings, nooxlintbump needed.Fix
rootDir: "."→rootDir: ".."intest/tsconfig.json.rootDirhas to contain every file in the program. This config includes bothtest/**and../src, so the repo root is the only value that covers them.rootDiris inert here anyway (noEmit: true) — it only existed to override the parent'srootDir: "src", and"."was the wrong override.Verified:
tsc -p test/tsconfig.jsongoes from 5 TS6059 errors to 0, andoxlint --type-awareexits 0.The alternative — dropping
../srcfrominclude— was rejected. It silences tsgolint but leaves the config broken:tscstill reports 95 TS6059 violations, because thesrcfiles are still pulled into the program as imports. That masks the problem rather than fixing it.Checks
pnpm run lint && pnpm run format && pnpm run build && pnpm run test:localall pass locally (564 tests passed, 4 skipped).Notes
test/tsconfig.jsoncommit and make the lint failure come back. If that happens, re-apply the one-line change.1ba4feacandmasterhas since moved to5ba9841e. Left un-rebased on purpose: rebasing triggers a full peer re-resolve of the website workspace and turns a 37-line lockfile diff into ~1600 lines.🤖 Generated with Claude Code