mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-21 23:29:38 +00:00
Makefile: adjust lint target
Enable linter for examples, scripts and interop packages. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
parent
c5c64f5f07
commit
8bdb8afaf5
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -24,6 +24,9 @@ IMAGE_REPO=nspccdev/neo-go
|
|||
|
||||
DISABLE_NEOTEST_COVER=1
|
||||
|
||||
ROOT_DIR:=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
||||
GOMODDIRS=$(dir $(shell find $(ROOT_DIR) -name go.mod))
|
||||
|
||||
# All of the targets are phony here because we don't really use make dependency
|
||||
# tracking for files
|
||||
.PHONY: build $(BINARY) deps image docker/$(BINARY) image-latest image-push image-push-latest clean-cluster \
|
||||
|
@ -113,7 +116,9 @@ vet:
|
|||
curl -L -o $@ https://github.com/nspcc-dev/.github/raw/master/.golangci.yml
|
||||
|
||||
lint: .golangci.yml
|
||||
@golangci-lint run
|
||||
@for dir in $(GOMODDIRS); do \
|
||||
(cd "$$dir" && golangci-lint run --config $(ROOT_DIR)/$< | sed -r "s,^,$$dir," | sed -r "s,^$(ROOT_DIR),,") \
|
||||
done
|
||||
|
||||
fmt:
|
||||
@gofmt -l -w -s $$(find . -type f -name '*.go'| grep -v "/vendor/")
|
||||
|
|
Loading…
Reference in a new issue