Fix CI for oxlint 1.80 bump - #38
Merged
Merged
Conversation
Bumps [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) from 1.76.0 to 1.80.0. - [Release notes](https://github.com/oxc-project/oxc/releases) - [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md) - [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v1.80.0/npm/oxlint) --- updated-dependencies: - dependency-name: oxlint dependency-version: 1.80.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Dependabot bumped the package.json version without regenerating the lockfile, which fails bun install --frozen-lockfile in CI. Co-authored-by: bartzagr <bartzagr@gmail.com>
Oxlint 1.80 reports bare underscore parameters as unused. These pages do not use PageProps, so remove the unused arguments. Co-authored-by: bartzagr <bartzagr@gmail.com>
|
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.
Summary
Unblocks CI for the oxlint 1.76.0 → 1.80.0 bump.
Dependabot updated
package.jsonbut notbun.lock, sobun install --frozen-lockfilefailed in the lint, format, and build jobs. Oxlint 1.80 also reports bare_parameters as unused, which failedbun run linton two pages that declared unusedPageProps.This PR includes the oxlint bump plus:
bun.lockfor oxlint 1.80.0app/(home)/page.tsxandapp/(home)/sponsors/page.tsxThe same commits were pushed to
dependabot/npm_and_yarn/oxlint-1.80.0so #37 can go green as well.Related issues
Fixes CI on #37
Validation
bun run lintbun run formatbun run buildbun run build:registryif registry files changedChecklist
Notes
These pages do not use
paramsorsearchParams, so the unusedPagePropsarguments were removed rather than renaming_to_props.