From 2de52e4fb9efbefc5f2b6020221d74c642a69562 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Sun, 5 Nov 2023 08:59:58 -0500 Subject: [PATCH] Makefile: staticcheck is included in golangci-lint Signed-off-by: Vincent Batts --- Makefile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Makefile b/Makefile index ac31e47..425e1f8 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ default: build validation validation: .test .vet .cli.test .PHONY: validation.tags -validation.tags: .test.tags .vet.tags .cli.test .staticcheck +validation.tags: .test.tags .vet.tags .cli.test .PHONY: gocyclo gocyclo: .gocyclo @@ -24,14 +24,6 @@ CLEAN_FILES += .gocyclo .gocyclo: gocyclo -avg -over 15 -ignore 'vendor/*' . && touch $@ -.PHONY: staticcheck -staticcheck: .staticcheck - -CLEAN_FILES += .staticcheck - -.staticcheck: - staticcheck . && touch $@ - .PHONY: test test: .test @@ -83,7 +75,6 @@ $(BUILD): $(SOURCE_FILES) install.tools: @go install github.com/fatih/color@latest ; \ go install github.com/fzipp/gocyclo/cmd/gocyclo@latest ; \ - go install honnef.co/go/tools/cmd/staticcheck@latest ; \ go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest ./bin: