From 7a07b1b5a86c1f5721316b776108fa4e853ee24c Mon Sep 17 00:00:00 2001 From: Daniel Reuter Date: Wed, 20 Nov 2024 13:57:05 +0100 Subject: [PATCH] build: ignore deprecation warnings --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2517631..a6a0f2a 100755 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ tidy: .PHONY: audit audit: go vet ./... - go run honnef.co/go/tools/cmd/staticcheck@latest -checks=all,-ST1000,-U1000,-ST1003 ./... + go run honnef.co/go/tools/cmd/staticcheck@latest -checks=all,-SA1019,-ST1000,-U1000,-ST1003 ./... go test -race -vet=off -coverprofile=coverage.out ./... go mod verify