We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0ad1e9 commit 39aa943Copy full SHA for 39aa943
Makefile
@@ -24,9 +24,6 @@ cover:
24
go test -coverprofile=cover.out -covermode=atomic -coverpkg=./... ./...
25
go tool cover -html=cover.out -o cover.html
26
27
-$(GOLINT): tools/go.mod
28
- cd tools && go install golang.org/x/lint/golint
29
-
30
$(STATICCHECK): tools/go.mod
31
cd tools && go install honnef.co/go/tools/cmd/[email protected]
32
@@ -37,8 +34,6 @@ lint: $(GOLINT) $(STATICCHECK)
37
34
@gofmt -d -s $(GO_FILES) 2>&1 | tee lint.log
38
35
@echo "Checking go vet"
39
36
@go vet ./... 2>&1 | tee -a lint.log
40
- @echo "Checking golint"
41
- @$(GOLINT) ./... | tee -a lint.log
42
@echo "Checking staticcheck"
43
@$(STATICCHECK) ./... 2>&1 | tee -a lint.log
44
@echo "Checking for license headers..."
0 commit comments