attempt to support go module (#1569)

* support go module

* update golint package url

* update golint
This commit is contained in:
田欧
2018-10-15 12:52:51 +08:00
committed by GitHub
parent 01ca2530d4
commit 523435e524
5 changed files with 64 additions and 16 deletions

View File

@ -68,3 +68,9 @@ misspell:
$(GO) get -u github.com/client9/misspell/cmd/misspell; \
fi
misspell -w $(GOFILES)
.PHONY: tools
tools:
go install golang.org/x/lint/golint; \
go install github.com/client9/misspell/cmd/misspell; \
go install github.com/campoy/embedmd;