From b0a7359a2e5dbea537f137501190b70b8513a861 Mon Sep 17 00:00:00 2001 From: Riley Zhang Date: Wed, 24 Jun 2026 05:02:50 +0200 Subject: [PATCH] Simplify fmt target to only use gofmt (goimports not available) Co-Authored-By: Paperclip --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 06eda28f..9f3bba32 100644 --- a/Makefile +++ b/Makefile @@ -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: