From 1cdb233a0045b1f59a2e37fac8571f88cd5064e5 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Mon, 7 Oct 2019 17:29:07 +0200 Subject: [PATCH] add lint command to Makefile --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Makefile b/Makefile index acca9e7..874282c 100644 --- a/Makefile +++ b/Makefile @@ -2,14 +2,35 @@ PKG := github.com/lightninglabs/loop GOTEST := GO111MODULE=on go test -v +GO_BIN := ${GOPATH}/bin + +GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*") GOLIST := go list $(PKG)/... | grep -v '/vendor/' +LINT_BIN := $(GO_BIN)/golangci-lint +LINT_PKG := github.com/golangci/golangci-lint/cmd/golangci-lint +LINT_COMMIT := v1.18.0 +LINT = $(LINT_BIN) run -v + +DEPGET := cd /tmp && GO111MODULE=on go get -v XARGS := xargs -L 1 TEST_FLAGS = -test.timeout=20m UNIT := $(GOLIST) | $(XARGS) env $(GOTEST) $(TEST_FLAGS) +$(LINT_BIN): + @$(call print, "Fetching linter") + $(DEPGET) $(LINT_PKG)@$(LINT_COMMIT) + unit: @$(call print, "Running unit tests.") $(UNIT) + +fmt: + @$(call print, "Formatting source.") + gofmt -l -w -s $(GOFILES_NOVENDOR) + +lint: $(LINT_BIN) + @$(call print, "Linting source.") + $(LINT) \ No newline at end of file