From 838b8ecb44cd46464f61984732992f6b605c56df Mon Sep 17 00:00:00 2001 From: Vaughan Whitteron Date: Tue, 27 Feb 2024 19:54:55 +0900 Subject: [PATCH] ci: disable vet scanning on kaitai struct output file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1120862..27ffd7f 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ tidy: .PHONY: audit audit: go mod verify - go vet ./... + go vet ./ ./internal/utils # ignore Kaitai Struct files as they trip some rules go run honnef.co/go/tools/cmd/staticcheck@latest -checks=all,-ST1000,-U1000 ./... go run golang.org/x/vuln/cmd/govulncheck@latest ./... go test -race -buildvcs -vet=off ./...