From 62198a59ba40a15e1f4148c761518b21a1ea8f78 Mon Sep 17 00:00:00 2001 From: xgopilot Date: Mon, 13 Oct 2025 07:53:12 +0000 Subject: [PATCH] docs: add descriptive instructions to Code Quality section - Add requirement to run formatting before submitting code updates - Emphasize that go fmt must be run before committing changes - Clarify that formatting ensures consistent code formatting Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: xgopilot --- CLAUDE.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 1e2b0d95..362478b6 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -70,11 +70,15 @@ go test ./... ## Code Quality +Before submitting any code updates, you must run the following formatting and validation commands: + ### Format code ```bash go fmt ./... ``` +**Important:** Always run `go fmt ./...` before committing code changes. This ensures consistent code formatting across the project. + ### Run static analysis ```bash go vet ./...