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
Could the go vet and gofmt tools please make it easier for users to skip third-party (vendored) code?
For now, I'm wrapping go vet and gofmt with find . -name vendor -prune -o -name '*.go' -exec go vet -v {} \; and find . -name vendor -prune -o -name '*.go' -exec gofmt -s -w {} \;, respectively.
The text was updated successfully, but these errors were encountered:
Could the
go vet
andgofmt
tools please make it easier for users to skip third-party (vendored) code?For now, I'm wrapping
go vet
andgofmt
withfind . -name vendor -prune -o -name '*.go' -exec go vet -v {} \;
andfind . -name vendor -prune -o -name '*.go' -exec gofmt -s -w {} \;
, respectively.The text was updated successfully, but these errors were encountered: