remove old SA1019 lint:ignore (#574)

This commit is contained in:
Scott Blum
2026-07-27 15:38:17 -04:00
committed by GitHub
parent 6be36ba632
commit 5f2d0c2dfc
8 changed files with 23 additions and 23 deletions
+3 -3
View File
@@ -7,9 +7,9 @@ import (
"strings"
"testing"
"github.com/golang/protobuf/jsonpb" //lint:ignore SA1019 we have to import these because some of their types appear in exported API
"github.com/golang/protobuf/proto" //lint:ignore SA1019 same as above
"github.com/jhump/protoreflect/desc" //lint:ignore SA1019 same as above
"github.com/golang/protobuf/jsonpb"
"github.com/golang/protobuf/proto"
"github.com/jhump/protoreflect/desc"
"google.golang.org/grpc/metadata"
"google.golang.org/protobuf/types/known/structpb"
)