We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 089407e commit 1d5b3a4Copy full SHA for 1d5b3a4
Makefile
@@ -7,12 +7,12 @@ test: pretest gotest
7
8
.PHONY: golangci-lint
9
golangci-lint:
10
- cd /tmp && GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@latest
+ go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
11
golangci-lint run
12
13
.PHONY: staticcheck
14
staticcheck:
15
- cd /tmp && GO111MODULE=on go get honnef.co/go/tools/cmd/staticcheck@master
+ go install honnef.co/go/tools/cmd/staticcheck@master
16
staticcheck ./...
17
18
.PHONY: lint
0 commit comments