From 15a982cb09130b77b8798df7906481638cac029a Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Wed, 8 Apr 2026 22:32:36 +0800 Subject: [PATCH 1/2] chore: reduce verbosity in build target I never look at all the output! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1940c7d..ce0f622 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ generate: mod-tidy .PHONY: build build: - goreleaser build --verbose --clean --single-target --snapshot + goreleaser build --clean --single-target --snapshot .PHONY: lint lint: From fc1631f8053983ea313ea5ffd801d844fb2125e8 Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Wed, 8 Apr 2026 22:33:01 +0800 Subject: [PATCH 2/2] chore: update the lint target to rely on .golangci.yaml --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce0f622..2119f27 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ build: .PHONY: lint lint: - golangci-lint run --enable gocritic + golangci-lint run .PHONY: fuzz fuzz: mod-tidy generate