From 739fe6be89b9fc33bdb372d7cb6bf0ae58731985 Mon Sep 17 00:00:00 2001 From: "Chris S. Kim" Date: Mon, 24 Oct 2022 12:33:22 -0400 Subject: [PATCH] Ignore ioutil linter messages --- .golangci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.golangci.yml b/.golangci.yml index afa2de0d4..b2ff1231e 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -37,6 +37,9 @@ issues: - linters: [staticcheck] text: 'SA1019: "github.com/golang/protobuf/ptypes" is deprecated: Well-known types have specialized functionality directly injected into the generated packages for each message type. See the deprecation notice for each function for the suggested alternative.' + - linters: [staticcheck] + text: 'SA1019: "io/ioutil" has been deprecated since Go 1.16' + # An argument that always receives the same value is often not a problem. - linters: [unparam] text: 'always receives'