From 3ce522f19c13a7a17630afe27ecb5c1999c18a5f 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 afa2de0d4b..b2ff1231e7 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'