You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Go GRPC generated code, the first few lines contain information about which exact version of protoc, protoc-gen-go and protoc-gen-go-grpc is used. It's informational but with every minor update, the lint check fails.
There are two possible solutions:
Pin everything to a specific version: This might be extremely annoying while development
Ignore these lines from the diff check: Since we're checking the exact code output, and dependency versions are defined by our go.mod, ignoring these lines in the diff should be OK.
The text was updated successfully, but these errors were encountered:
With Go GRPC generated code, the first few lines contain information about which exact version of
protoc
,protoc-gen-go
andprotoc-gen-go-grpc
is used. It's informational but with every minor update, the lint check fails.There are two possible solutions:
go.mod
, ignoring these lines in the diff should be OK.The text was updated successfully, but these errors were encountered: