Paginate and sport-tailor the simulator setup participant table #132

Merged
chrisp merged 2 commits from simulator-participant-pagination into main 2026-07-07 06:00:16 +00:00
Showing only changes of commit 32ba731793 - Show all commits

View file

@ -9,17 +9,14 @@
"command": ".claude/hooks/lint-on-edit.sh", "command": ".claude/hooks/lint-on-edit.sh",
"timeout": 30, "timeout": 30,
"statusMessage": "Linting..." "statusMessage": "Linting..."
} },
]
}
],
"Stop": [
{
"hooks": [
{ {
"type": "command", "type": "command",
"command": "output=$(npm run typecheck 2>&1); rc=$?; if [ $rc -ne 0 ]; then printf '{\"systemMessage\":\"TypeCheck failed:\\n%s\"}' \"$(echo \"$output\" | tail -30 | sed 's/\"/\\\\\"/g; s/$/\\\\n/' | tr -d '\\n')\"; fi", "if": "Write(*.ts)|Write(*.tsx)|Edit(*.ts)|Edit(*.tsx)|MultiEdit(*.ts)|MultiEdit(*.tsx)",
"timeout": 60 "command": "output=$(npm run typecheck 2>&1); rc=$?; if [ $rc -ne 0 ]; then printf '{\"hookSpecificOutput\":{\"hookEventName\":\"PostToolUse\",\"additionalContext\":\"TypeCheck failed:\\n%s\"}}' \"$(echo \"$output\" | tail -30 | sed 's/\"/\\\\\"/g; s/$/\\\\n/' | tr -d '\\n')\"; fi",
"timeout": 60,
"statusMessage": "Type-checking...",
"async": true
} }
] ]
} }