Skip to content

Instantly share code, notes, and snippets.

@up1
Last active January 13, 2026 07:13
Show Gist options
  • Select an option

  • Save up1/1ca01dd927d244eb7262d83a8efe389f to your computer and use it in GitHub Desktop.

Select an option

Save up1/1ca01dd927d244eb7262d83a8efe389f to your computer and use it in GitHub Desktop.
Tips :: Claude Code
"PostToolUse": [
{
"matcher":"Write|Edit",
"hooks": [
{
"type": "command",
"command": "bun run format || true"
}
]
}
]
# 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
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