Add vet and staticcheck make targets

This commit is contained in:
Holger Obermaier 2022-01-20 12:09:22 +01:00
parent 7902279750
commit 4d8adc8c87

View File

@ -26,3 +26,14 @@ fmt:
go fmt $(GOSRC_APP)
find . -name "*.go" -exec go fmt {} \;
# Examine Go source code and reports suspicious constructs
.PHONY: vet
go vet ./...
# Run linter for the Go programming language.
# Using static analysis, it finds bugs and performance issues, offers simplifications, and enforces style rules
.PHONY: staticcheck
staticcheck:
go install honnef.co/go/tools/cmd/staticcheck@latest
$$(go env GOPATH)/bin/staticcheck ./...