Skip to content

Commit 2df1938

Browse files
committed
Merge pull request #2271 from mboersma/fix-golint-use
style(*): use golint recursively on all packages
2 parents cfa1cbe + d443bf1 commit 2df1938

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

deisctl/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ setup-gotools:
3535

3636
test-style:
3737
go vet ./...
38-
-golint *.go client/*.go cmd/*.go config/*.go constant/*.go lock/*.go update/*.go utils/*.go
38+
-golint ./...
3939

4040
test: test-style
4141
godep go test -v -cover ./...

logger/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ setup-gotools:
6060

6161
test-style:
6262
go vet -x ./...
63-
-golint .
63+
-golint ./...
6464

6565
test-unit: test-style
6666
go test -v -cover ./syslog

logspout/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ setup-gotools:
6262

6363
test-style:
6464
go vet -x ./...
65-
-golint .
65+
-golint ./...
6666

6767
test-unit: test-style
6868
@echo no tests

tests/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ setup-gotools:
3434

3535
test-style:
3636
go vet -x ./...
37-
-golint; golint dockercli; golint etcdutils; golint mock; golint utils
37+
-golint ./...
3838

3939
nuke_from_orbit:
4040
-docker kill `docker ps -q`

0 commit comments

Comments
 (0)