-
Notifications
You must be signed in to change notification settings - Fork 3
docs(workflow): remove biome references from development workflow skill #209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Update lint and format command descriptions to reflect current tools (oxfmt, oxlint, knip) - Remove outdated Biome mentions
commit: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR updates the development workflow documentation to remove outdated references to Biome and replace them with the current tooling stack (oxfmt, oxlint, knip).
- Removes Biome references from lint and format command descriptions
- Updates documentation to reflect current tooling configuration
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - `pnpm lint` - Run Biome linter | ||
| - `pnpm format` - Format code with Biome | ||
| - `pnpm lint` - Run linter (oxfmt, oxlint, knip) | ||
| - `pnpm format` - Format code (oxfmt, oxlint, knip) |
Copilot
AI
Dec 10, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description for pnpm format is misleading. Looking at package.json, this command runs format:oxfmt, format:oxlint, and format:knip. However:
oxfmtis the formatteroxlint --fixapplies auto-fixes for linting issuesknip --fixremoves unused code
The description should clarify that this command formats code and applies auto-fixes, not just "Format code (oxfmt, oxlint, knip)". Consider: - pnpm format - Format code with oxfmt and apply auto-fixes (oxlint, knip)
| - `pnpm format` - Format code (oxfmt, oxlint, knip) | |
| - `pnpm format` - Format code with oxfmt and apply auto-fixes (oxlint, knip) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No issues found across 1 file
glebedel
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Summary
Test Plan
Summary by cubic
Removed outdated Biome references in the development workflow skill and updated lint/format command descriptions to reflect current tools (oxfmt, oxlint, knip). This keeps the docs accurate and aligned with our current toolchain.
Written for commit aaf0721. Summary will update automatically on new commits.