mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add format
target to Makefile
This commit is contained in:
parent
9da013f339
commit
4898f31f6d
3 changed files with 7 additions and 2 deletions
6
Makefile
6
Makefile
|
@ -45,6 +45,12 @@ lintall: lint ##@Development Lint Go and JS code
|
|||
@(cd ./ui && npm run lint)
|
||||
.PHONY: lintall
|
||||
|
||||
format: ##@Development Format code
|
||||
@(cd ./ui && npm run prettier)
|
||||
@go run golang.org/x/tools/cmd/goimports -w `find . -name '*.go' | grep -v '_gen.go$''`
|
||||
@go mod tidy
|
||||
.PHONY: format
|
||||
|
||||
wire: check_go_env ##@Development Update Dependency Injection
|
||||
go run github.com/google/wire/cmd/wire@latest ./...
|
||||
.PHONY: wire
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue