Skip to content

Commit

Permalink
[update] install-tools command
Browse files Browse the repository at this point in the history
  • Loading branch information
bmf-san committed May 9, 2024
1 parent 67d10ed commit 108fa37
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,12 @@ help:

.PHONY: install-tools
install-tools: ## Install staticcheck.
ifeq ($(shell command -v staticcheck 2> /dev/null),)
go install honnef.co/go/tools/cmd/staticcheck@latest
endif
ifeq ($(shell command -v goimports 2> /dev/null),)
go install golang.org/x/tools/cmd/goimports@latest
endif
ifeq ($(shell command -v errcheck 2> /dev/null),)
go install github.com/kisielk/errcheck@latest
endif
ifeq ($(shell command -v gosec 2> /dev/null),)
go install github.com/securego/gosec/v2/cmd/gosec@latest
endif
ifeq ($(shell command -v benchstat 2> /dev/null),)
go install golang.org/x/perf/cmd/benchstat@latest
endif
ifeq ($(shell govulncheck ./... 2> /dev/null),)
go install golang.org/x/vuln/cmd/govulncheck@latest
endif

.PHONY: gofmt
gofmt: ## Run gofmt.
Expand Down

0 comments on commit 108fa37

Please sign in to comment.