mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add 'lint
to pre-push git hook
This commit is contained in:
parent
c46aa72ede
commit
d5434d4169
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -37,6 +37,10 @@ lint:
|
||||||
go run github.com/golangci/golangci-lint/cmd/golangci-lint run -v
|
go run github.com/golangci/golangci-lint/cmd/golangci-lint run -v
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
|
|
||||||
|
lintall: check_node_dev_env lint
|
||||||
|
@(cd ./ui && npm run check-formatting && npm run lint)
|
||||||
|
.PHONY: lintall
|
||||||
|
|
||||||
update-snapshots: check_go_env
|
update-snapshots: check_go_env
|
||||||
UPDATE_SNAPSHOTS=true go run github.com/onsi/ginkgo/ginkgo ./server/subsonic/...
|
UPDATE_SNAPSHOTS=true go run github.com/onsi/ginkgo/ginkgo ./server/subsonic/...
|
||||||
.PHONY: update-snapshots
|
.PHONY: update-snapshots
|
||||||
|
@ -111,7 +115,7 @@ buildall: check_env
|
||||||
go build -ldflags="-X github.com/navidrome/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/navidrome/navidrome/consts.gitTag=$(GIT_TAG)-SNAPSHOT" -tags=netgo
|
go build -ldflags="-X github.com/navidrome/navidrome/consts.gitSha=$(GIT_SHA) -X github.com/navidrome/navidrome/consts.gitTag=$(GIT_TAG)-SNAPSHOT" -tags=netgo
|
||||||
.PHONY: buildall
|
.PHONY: buildall
|
||||||
|
|
||||||
pre-push: lint test
|
pre-push: lintall testall
|
||||||
.PHONY: pre-push
|
.PHONY: pre-push
|
||||||
|
|
||||||
release:
|
release:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue