From 25d14bd5e4730b02961b8c2729073e65e85eb504 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 11 Jun 2025 03:41:03 +0100 Subject: [PATCH] fix(makefile): update golangci-lint import path to v2 module (#13) Use correct import path for golangci-lint v2 so that `make lint` works. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7fad022..52058f3 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ endef $(eval $(call tool,godoc,golang.org/x/tools/cmd/godoc@latest)) $(eval $(call tool,gofumpt,mvdan.cc/gofumpt@latest)) $(eval $(call tool,goimports,golang.org/x/tools/cmd/goimports@latest)) -$(eval $(call tool,golangci-lint,github.com/golangci/golangci-lint/cmd/golangci-lint@v2.1.6)) +$(eval $(call tool,golangci-lint,github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.1)) $(eval $(call tool,gomod,github.com/Helcaraxan/gomod@latest)) .PHONY: tools