chore: replace Biome with rslint and Prettier#92
Conversation
There was a problem hiding this comment.
Pull request overview
Replaces Biome-based lint/format tooling with @rslint/core for linting and Prettier for formatting, updating local scripts, hooks, and CI/editor settings accordingly.
Changes:
- Swap
biome checkscripts forrslint+prettier(check/write) and update dependencies/lockfile. - Remove Biome configuration and VS Code Biome recommendations; add Prettier config/ignore.
- Add
rslint.config.tsand align workflow YAML formatting.
Reviewed changes
Copilot reviewed 11 out of 13 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/index.ts | Removes Biome-specific ignore comments from rule configuration. |
| rslint.config.ts | Adds baseline rslint configuration. |
| README.md | Re-formats a snippet/paragraph (but retains typos). |
| pnpm-lock.yaml | Removes Biome + nano-staged; adds rslint + prettier. |
| package.json | Updates lint scripts, pre-commit hook, and devDependencies. |
| biome.json | Removes Biome configuration file. |
| .vscode/settings.json | Switches default formatter to Prettier. |
| .vscode/extensions.json | Recommends Prettier extension instead of Biome. |
| .prettierrc | Adds Prettier configuration. |
| .prettierignore | Adds Prettier ignore (lockfile). |
| .github/workflows/test.yml | Formatting-only updates (quotes). |
| .github/workflows/release.yml | Formatting-only updates (quotes). |
| .github/renovate.json | Adds Renovate configuration. |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 7b0dd47163
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Summary
This PR replaces Biome with @rslint/core plus Prettier across local tooling and CI.
It updates the lint scripts and pre-commit hook, adds the new config files, and aligns docs, workflows, and editor settings with the new formatting stack.
Related Links
None