From 29b9a508a3409e0c1ab9e765102bd4bfaceb2670 Mon Sep 17 00:00:00 2001 From: Timothy Messier Date: Tue, 30 May 2023 20:12:23 +0000 Subject: [PATCH] chore(lint): Ignore warning about deprecated field This is being explicitly tested until it is removed, so this silences the linter for this specific case. --- .golangci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index d8f0917fb0..f5d56b5a01 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -12,3 +12,6 @@ issues: - linters: - stylecheck text: "ST1003:" + - linters: + - staticcheck + text: "SA1019: pbs.AuthorizedWorkerList is deprecated:"