From 73fecfb7c4e4ea01c3790ddeffd70c5defc8a429 Mon Sep 17 00:00:00 2001 From: Sean Malloy Date: Fri, 6 Dec 2024 15:28:24 -0600 Subject: [PATCH] Enable golangci-lint Verbose Output The golangci-lint tool gets stuck for a variety of reasons when running in Prow CI. Enabling verbose output in an attempt to make debugging easier. ref: https://golangci-lint.run/contributing/debug/ --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 777e1bb0d..eda9c8a83 100644 --- a/Makefile +++ b/Makefile @@ -148,7 +148,7 @@ lint: ifndef HAS_GOLANGCI curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./_output/bin ${GOLANGCI_VERSION} endif - ./_output/bin/golangci-lint run + ./_output/bin/golangci-lint run -v fmt: ifndef HAS_GOFUMPT