Skip to content

Commit 39aa943

Browse files
committed
update makefile
1 parent f0ad1e9 commit 39aa943

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Makefile

-5
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ cover:
2424
go test -coverprofile=cover.out -covermode=atomic -coverpkg=./... ./...
2525
go tool cover -html=cover.out -o cover.html
2626

27-
$(GOLINT): tools/go.mod
28-
cd tools && go install golang.org/x/lint/golint
29-
3027
$(STATICCHECK): tools/go.mod
3128
cd tools && go install honnef.co/go/tools/cmd/[email protected]
3229

@@ -37,8 +34,6 @@ lint: $(GOLINT) $(STATICCHECK)
3734
@gofmt -d -s $(GO_FILES) 2>&1 | tee lint.log
3835
@echo "Checking go vet"
3936
@go vet ./... 2>&1 | tee -a lint.log
40-
@echo "Checking golint"
41-
@$(GOLINT) ./... | tee -a lint.log
4237
@echo "Checking staticcheck"
4338
@$(STATICCHECK) ./... 2>&1 | tee -a lint.log
4439
@echo "Checking for license headers..."

0 commit comments

Comments
 (0)