Simplify fmt target to only use gofmt (goimports not available)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Riley Zhang 2026-06-24 05:02:50 +02:00
parent 6f03ff2465
commit b0a7359a2e

View File

@ -14,10 +14,9 @@ test:
lint:
golangci-lint run ./...
## fmt: Format code with gofmt and goimports
## fmt: Format code with gofmt
fmt:
gofmt -s -w .
goimports -w .
## vet: Run go vet
vet: