mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 17:33:47 +00:00
Merge branch 'master' of github.com:modeneis/go-ethereum
This commit is contained in:
commit
e79ce54a75
1 changed files with 9 additions and 0 deletions
9
Makefile
9
Makefile
|
|
@ -37,6 +37,15 @@ ios:
|
|||
test: all
|
||||
build/env.sh go run build/ci.go test
|
||||
|
||||
lint: install-linters ## Run linters. Use make install-linters first.
|
||||
vendorcheck ./...
|
||||
gometalinter --disable-all -E vet -E goimports -E varcheck --tests --vendor ./...
|
||||
|
||||
install-linters: ## Install linters
|
||||
go get -u github.com/FiloSottile/vendorcheck
|
||||
go get -u github.com/alecthomas/gometalinter
|
||||
gometalinter --vendored-linters --install
|
||||
|
||||
clean:
|
||||
rm -fr build/_workspace/pkg/ $(GOBIN)/*
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue