We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acdf5b1 commit 9d1fcfaCopy full SHA for 9d1fcfa
AGENTS.md
@@ -26,6 +26,9 @@ Prefer `make` targets at repo root:
26
- Go formatting is enforced: run `make fmt` (uses `golangci-lint fmt`; Go uses tabs for indentation).
27
- Imports should be goimports-compatible; keep package names lowercase; exported identifiers use `PascalCase`.
28
- Protobuf changes must pass `buf lint` and should be regenerated via `make proto-generate`.
29
+- Always run `gofumpt` on Go files after making changes
30
+- The project uses `gofumpt` (stricter than `gofmt`) for formatting
31
+- Before completing Go-related tasks, run: `~/go/bin/gofumpt -w <files>`
32
33
## Testing Guidelines
34
0 commit comments