Merged
Conversation
… plugin - Upgrade oxlint 1.50.0 → 1.56.0, oxfmt 0.35.0 → 0.41.0 - Install eslint-plugin-react-hook-form and wire it up as a jsPlugin - Enable two compatible rules: destructuring-formstate and no-nested-object-setvalue (no-access-control still uses context.getScope() which oxlint doesn't support) - Fix NodeJS.Timeout → ReturnType<typeof setTimeout> in Spinner.tsx (NodeJS types aren't available in browser context, triggering no-redundant-type-constituents) - Suppress await-thenable false positive on `await using` in bump-omicron.ts https://claude.ai/code/session_013HaHiwWNFfGRU8ByisGb1K
oxlint 1.56.0 requires oxlint-tsgolint>=0.15.0. Previously we used --legacy-peer-deps to work around this, which caused @types/node to stop being installed as a peer dep of vite/vitest, producing 48 tsc errors. Upgrading oxlint-tsgolint to 0.17.1 resolves the conflict and restores the correct peer dep resolution. https://claude.ai/code/session_013HaHiwWNFfGRU8ByisGb1K
Replace the hand-built lockfile with one regenerated from scratch to get deterministic transitive dep resolution. https://claude.ai/code/session_013HaHiwWNFfGRU8ByisGb1K
makeOmicronWorktree() correctly implements [Symbol.asyncDispose], making it properly async-disposable. The oxlint await-thenable false positive happens because tools/deno is excluded from tsconfig, so oxlint 1.56.0 lacks type info and wrongly flags the await as non-async-disposable. https://claude.ai/code/session_013HaHiwWNFfGRU8ByisGb1K
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Did this from the mobile app, which is fun. I saw https://oxc.rs/blog/2026-03-11-oxlint-js-plugins-alpha.html and was wondering if the React Hook Form linter plugin works now. The answer is 2/3 of the way. One rule still has to be disabled.