From 3b53b4f6cea2305ec22907bd319cc0edd9056f5b Mon Sep 17 00:00:00 2001 From: stewartboyd119 Date: Mon, 22 Jul 2024 13:07:52 -0700 Subject: [PATCH] Added lint ignore to protobase64.go --- protobase64.go | 1 + 1 file changed, 1 insertion(+) diff --git a/protobase64.go b/protobase64.go index 94d27e6..7309867 100644 --- a/protobase64.go +++ b/protobase64.go @@ -4,6 +4,7 @@ import ( "encoding/base64" "fmt" + //nolint:staticcheck // Older zillow libs have generated code which uses this deprecated package. To maintain backwards compatability with them, the older proto serialization lib should be maintained v1proto "github.com/golang/protobuf/proto" v2proto "google.golang.org/protobuf/proto" )