From c0ebe32cccfd2428abb85eb6433f1383149f7b84 Mon Sep 17 00:00:00 2001 From: Tim Flannagan Date: Fri, 7 Jan 2022 12:24:59 -0500 Subject: [PATCH] Remove the unused 'lint' Makefile target (#2555) The 'lint' target is no longer used throughout CI since the integration with golangci-lint, which runs both the goimports and gofmt tooling under-the-hood. Signed-off-by: timflannagan --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index b6b18d93ad..eb768d6f0d 100644 --- a/Makefile +++ b/Makefile @@ -186,10 +186,6 @@ clean: @rm -rf test/e2e/log @rm -rf e2e.namespace -lint: - find . -name '*.go' -not -path "./vendor/*" -not -path "./pkg/lib/operatorclient/operatorclientmocks/*" | xargs gofmt -w - find . -name '*.go' -not -path "./vendor/*" -not -path "./pkg/lib/operatorclient/operatorclientmocks/*" | xargs goimports -w - # Copy CRD manifests manifests: vendor ./scripts/copy_crds.sh