Files
notfiles/.claude/settings.json
Joseph O'Brien ebb8a5946d
Some checks failed
Public Repo Readiness / Check Public Repo Readiness (push) Failing after 6s
refactor(nothooks): make hook runner language-agnostic
Remove hardcoded nu interpreter. HookSpec gains an optional interpreter
field; runner infers from file extension (.sh, .nu, .py, .rb, .zsh,
.bash) when not set. Integration tests now use sh — no nu runtime dep
on CI.
2026-04-04 01:14:29 -04:00

16 lines
283 B
JSON

{
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "bash -c 'if [ -f Cargo.toml ]; then cargo check --quiet 2>&1 | head -20; fi'"
}
]
}
]
}
}