You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
golangci-lint run -v --out-format=tab --timeout 10m0s
.PHONY: lint
## Install tools
tools:
go install github.com/mvdan/gofumpt@latest
go install github.com/goreleaser/goreleaser@latest
if [[ "$$OSTYPE" == "darwin"* ]]; then curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.43.0; fi
if [[ "$$OSTYPE" == "linux-gnu"* ]]; then wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.43.0; fi