From d1ff614d4e6ee15c0dedf2e96a5b3da03e171da8 Mon Sep 17 00:00:00 2001 From: Daniel Reuter Date: Wed, 20 Nov 2024 13:57:09 +0100 Subject: [PATCH] build: ignore deprecation warnings --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 41b9d58..209df0f 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,-ST1003,-U1000 ./... + go run honnef.co/go/tools/cmd/staticcheck@latest -checks=all,-SA1019,-ST1000,-ST1003,-U1000 ./... go test -race -vet=off -coverprofile=coverage.out ./... go mod verify