mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +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
|
||||
.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=true go run github.com/onsi/ginkgo/ginkgo ./server/subsonic/...
|
||||
.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
|
||||
.PHONY: buildall
|
||||
|
||||
pre-push: lint test
|
||||
pre-push: lintall testall
|
||||
.PHONY: pre-push
|
||||
|
||||
release:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue