We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9134abe commit 697cd44Copy full SHA for 697cd44
2 files changed
.claude/settings.json
@@ -2,11 +2,11 @@
2
"hooks": {
3
"PostToolUse": [
4
{
5
- "matcher": "Edit|Write",
+ "matcher": "Edit|Write|MultiEdit",
6
"hooks": [
7
8
"type": "command",
9
- "command": "jq -r '.tool_input.file_path // empty' | xargs -I{} gofumpt -w {}"
+ "command": "jq -r '.tool_input.file_path // empty' | { read -r f; case \"$f\" in *.go) gofumpt -w \"$f\" ;; esac; } 2>/dev/null || true"
10
}
11
]
12
CLAUDE.md
@@ -0,0 +1,5 @@
1
+# CLAUDE.md
+
+## Build & test
+- All Go commands need `GOFLAGS=-mod=vendor` (deps are vendored, including the `jesseduffield/gocui` fork and the Docker SDK).
+- Unit tests: `GOFLAGS=-mod=vendor go test ./...`
0 commit comments