Files
2025-11-30 08:41:56 +08:00

40 lines
713 B
JSON

{
"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
}
]
}
]
}
}