Skip to content

Commit 61e8a40

Browse files
committed
Add linting to test harness
1 parent e3fc321 commit 61e8a40

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

languages/go/goeql/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
all: test
22

3-
test: gotest goerrcheck gostaticcheck
3+
test: gotest goerrcheck gostaticcheck golint
44

55
cidep:
66
go install honnef.co/go/tools/cmd/staticcheck@latest
77
go install github.com/kisielk/errcheck@latest
8+
go install golang.org/x/lint/golint@latest
89

910
gotest:
1011
go test ./... -v -timeout=45s -failfast
@@ -14,3 +15,6 @@ goerrcheck:
1415

1516
gostaticcheck:
1617
staticcheck ./...
18+
19+
golint:
20+
golint

0 commit comments

Comments
 (0)