Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 5985636

Browse files
committed
add staticcheck linter
1 parent 7bf0388 commit 5985636

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Makefile

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LDFLAGS := -X github.com/tomcz/openldap_exporter.commit=${GITCOMMIT}
55
LDFLAGS := ${LDFLAGS} -X github.com/tomcz/openldap_exporter.tag=${GIT_TAG}
66

77
.PHONY: precommit
8-
precommit: clean format build
8+
precommit: clean format lint build
99

1010
.PHONY: commit
1111
commit: clean
@@ -26,6 +26,14 @@ endif
2626
@echo "Running goimports ..."
2727
@goimports -w -local github.com/tomcz/openldap_exporter $(shell find . -type f -name '*.go' | grep -v '/vendor/')
2828

29+
.PHONY: lint
30+
lint:
31+
ifeq (, $(shell which staticcheck))
32+
go install honnef.co/go/tools/cmd/[email protected]
33+
endif
34+
@echo "Running staticcheck ..."
35+
@staticcheck $(shell go list ./... | grep -v /vendor/)
36+
2937
compile = GOOS=$1 GOARCH=amd64 go build -ldflags "${LDFLAGS}" -o target/openldap_exporter-$1 ./cmd/openldap_exporter
3038

3139
.PHONY: build

0 commit comments

Comments
 (0)