Last active
January 13, 2026 07:13
-
-
Save up1/1ca01dd927d244eb7262d83a8efe389f to your computer and use it in GitHub Desktop.
Tips :: Claude Code
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
| "PostToolUse": [ | |
| { | |
| "matcher":"Write|Edit", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "bun run format || true" | |
| } | |
| ] | |
| } | |
| ] |
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
| # Development Workflow | |
| **Always use `bun`, not `npm`.** | |
| sh | |
| # 1. Make changes | |
| # 2. Typecheck (fast) | |
| bun run typecheck | |
| #3. Run tests | |
| bun run test -- -t "test name" | |
| bun run test:file -- "glob" | |
| # 4. Lint before committing | |
| bun run lint:file -- "file1.ts" | |
| bun run lint | |
| # 5. Before creating PR | |
| bun run lint:claude && bun run test |
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
| https://www.infoq.com/news/2026/01/claude-code-creator-workflow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment