Skip to content

Commit

Permalink
Merge pull request deis#2271 from mboersma/fix-golint-use
Browse files Browse the repository at this point in the history
style(*): use golint recursively on all packages
  • Loading branch information
mboersma committed Oct 27, 2014
2 parents cfa1cbe + d443bf1 commit 2df1938
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deisctl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ setup-gotools:

test-style:
go vet ./...
-golint *.go client/*.go cmd/*.go config/*.go constant/*.go lock/*.go update/*.go utils/*.go
-golint ./...

test: test-style
godep go test -v -cover ./...
Expand Down
2 changes: 1 addition & 1 deletion logger/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ setup-gotools:

test-style:
go vet -x ./...
-golint .
-golint ./...

test-unit: test-style
go test -v -cover ./syslog
Expand Down
2 changes: 1 addition & 1 deletion logspout/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ setup-gotools:

test-style:
go vet -x ./...
-golint .
-golint ./...

test-unit: test-style
@echo no tests
Expand Down
2 changes: 1 addition & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ setup-gotools:

test-style:
go vet -x ./...
-golint; golint dockercli; golint etcdutils; golint mock; golint utils
-golint ./...

nuke_from_orbit:
-docker kill `docker ps -q`
Expand Down

0 comments on commit 2df1938

Please sign in to comment.