Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude/skills/development-workflow/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ This skill provides all commands and best practices for building, developing, an

## Code Quality

- `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

Copy link

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:

  • oxfmt is the formatter
  • oxlint --fix applies auto-fixes for linting issues
  • knip --fix removes 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)

Suggested change
- `pnpm format` - Format code (oxfmt, oxlint, knip)
- `pnpm format` - Format code with oxfmt and apply auto-fixes (oxlint, knip)

Copilot uses AI. Check for mistakes.
- `pnpm typecheck` - Type check with tsgo
- `pnpm lint:fix` - Auto-fix linting issues

Expand Down
Loading