We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6135d8f commit 54a8599Copy full SHA for 54a8599
scripts/vet.sh
@@ -67,6 +67,9 @@ not git grep "\"github.com/golang/protobuf/*" -- "*.go" ':(exclude)reflection/te
67
# - Ensure all usages of grpc_testing package are renamed when importing.
68
not git grep "\(import \|^\s*\)\"google.golang.org/grpc/interop/grpc_testing" -- "*.go"
69
70
+# Ensure that no trailing spaces are found.
71
+not git grep '[[:blank:]]$'
72
+
73
# - Ensure all xds proto imports are renamed to *pb or *grpc.
74
git grep '"github.com/envoyproxy/go-control-plane/envoy' -- '*.go' ':(exclude)*.pb.go' | not grep -v 'pb "\|grpc "'
75
@@ -185,7 +188,4 @@ revive \
185
188
-config "$(dirname "$0")/revive.toml" \
186
189
./...
187
190
-# Ensure that no trailing spaces are found.
-not git grep '[[:blank:]]$'
-
191
echo SUCCESS
0 commit comments