ignore deprecated check for now (#75)
This commit is contained in:
parent
9fa2fce63b
commit
0f9e76c978
10
Makefile
10
Makefile
|
|
@ -36,10 +36,18 @@ checkgofmt:
|
||||||
vet:
|
vet:
|
||||||
go vet ./...
|
go vet ./...
|
||||||
|
|
||||||
|
# TODO: remove the ignored check; need it for now because it
|
||||||
|
# is complaining about a deprecated comment added to grpc,
|
||||||
|
# but it's not yet released. Once the new (non-deprecated)
|
||||||
|
# API is included in a release, we can move to that new
|
||||||
|
# version and fix the call site to no longer use deprecated
|
||||||
|
# method.
|
||||||
|
# This all works fine with Go modules, but without modules,
|
||||||
|
# CI is just getting latest master for dependencies like grpc.
|
||||||
.PHONY: staticcheck
|
.PHONY: staticcheck
|
||||||
staticcheck:
|
staticcheck:
|
||||||
@go get honnef.co/go/tools/cmd/staticcheck
|
@go get honnef.co/go/tools/cmd/staticcheck
|
||||||
staticcheck ./...
|
staticcheck -ignore github.com/fullstorydev/grpcurl/tls_settings_test.go:SA1019 ./...
|
||||||
|
|
||||||
.PHONY: unused
|
.PHONY: unused
|
||||||
unused:
|
unused:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue