@@ -0,0 +1,18 @@
.DEFAULT_GOAL := build
fmt:
go mod tidy
go fmt ./...
.PHONY:fmt
lint: fmt
golint ./...
.PHONY:lint
vet: fmt
go vet ./...
.PHONY:vet
build: vet
go build
.PHONY:build
The note is not visible to the blocked user.