{ "description": "Auto-format, lint, and type-check files using Biome and TypeScript (git-aware)", "hooks": { "PostToolUse": [ { "matcher": "Write|Edit|MultiEdit", "hooks": [ { "type": "command", "command": "bun run ${CLAUDE_PLUGIN_ROOT}/hooks/biome-check.ts", "timeout": 30 } ] } ], "Stop": [ { "matcher": "*", "hooks": [ { "type": "command", "command": "bun run ${CLAUDE_PLUGIN_ROOT}/hooks/biome-ci.ts", "timeout": 60 } ] }, { "matcher": "*", "hooks": [ { "type": "command", "command": "bun run ${CLAUDE_PLUGIN_ROOT}/hooks/tsc-ci.ts", "timeout": 120 } ] } ] } }