From 03bf45f2b457cd83e8fb7e1c5bc030677eabe838 Mon Sep 17 00:00:00 2001 From: Marc Sluiter Date: Sun, 14 Jul 2024 19:59:25 +0200 Subject: [PATCH] Ignore deprecated github.com/Azure/azure-sdk-for-go packages Heads up though, we might need to update sooner or later. See https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/MIGRATION_GUIDE.md --- .golangci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index 85d82654d..7d5bae6df 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -11,6 +11,9 @@ issues: - linters: - staticcheck text: "SA1019: codec.BasicHandle is deprecated" + - linters: + - staticcheck + text: "SA1019: \"github.com/Azure/azure-sdk-for-go" # This is set to false to disregard the default EXC0011 exclusion # which shadows all the ST* checks. Refer https://github.com/golangci/golangci-lint/issues/2281 exclude-use-default: false