Skip to content

Commit

Permalink
Exclude thrift-0.9.2 from linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuri Shkuro committed Mar 19, 2017
1 parent a1083c5 commit eb00266
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fmt:
lint:
$(GOVET) $(PACKAGES)
@cat /dev/null > $(LINT_LOG)
@$(foreach pkg, $(PACKAGES), $(GOLINT) $(pkg) | grep -v thrift-gen >> $(LINT_LOG) || true;)
@$(foreach pkg, $(PACKAGES), $(GOLINT) $(pkg) | grep -v -e thrift-gen -e thrift-0.9.2 >> $(LINT_LOG) || true;)
@[ ! -s "$(LINT_LOG)" ] || (echo "Lint Failures" | cat - $(LINT_LOG) && false)
@$(GOFMT) -e -s -l $(ALL_SRC) > $(FMT_LOG)
@./scripts/updateLicenses.sh >> $(FMT_LOG)
Expand Down
4 changes: 2 additions & 2 deletions cmd/agent/app/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ import (
zipkinThrift "github.com/uber/jaeger/thrift-gen/agent"
jaegerThrift "github.com/uber/jaeger/thrift-gen/jaeger"

"github.com/uber/jaeger/pkg/discovery"
"github.com/uber/jaeger/pkg/discovery/peerlistmgr"
"github.com/uber/jaeger/cmd/agent/app/processors"
"github.com/uber/jaeger/cmd/agent/app/reporter"
"github.com/uber/jaeger/cmd/agent/app/sampling"
"github.com/uber/jaeger/cmd/agent/app/servers"
"github.com/uber/jaeger/cmd/agent/app/servers/thriftudp"
"github.com/uber/jaeger/pkg/discovery"
"github.com/uber/jaeger/pkg/discovery/peerlistmgr"
)

const (
Expand Down

0 comments on commit eb00266

Please sign in to comment.