mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
13 lines
261 B
Makefile
13 lines
261 B
Makefile
|
|
.PHONY: setup-tools
|
|
|
|
setup-tools: golangci-lint gofumpt
|
|
|
|
GOINSTALL := CGO_ENABLED=0 GOBIN="$(CURDIR)/bin" go install
|
|
|
|
golangci-lint: go.mod
|
|
@$(GOINSTALL) "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
|
|
gofumpt: go.mod
|
|
@$(GOINSTALL) "mvdan.cc/gofumpt"
|