chore: split format html
parent
6d8a50e8a9
commit
935ffea466
8
Makefile
8
Makefile
|
@ -1,6 +1,6 @@
|
||||||
.PHONY: all test test-color coverage coverage-cli coverage-html lint format gen
|
.PHONY: all test test-color coverage coverage-cli coverage-html lint format gen format-html
|
||||||
|
|
||||||
all: test-color lint format gen
|
all: test-color lint format gen format-html
|
||||||
go mod tidy
|
go mod tidy
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
@ -27,7 +27,9 @@ format:
|
||||||
go install mvdan.cc/gofumpt@latest
|
go install mvdan.cc/gofumpt@latest
|
||||||
gofimports -w -company github.com/make-go-great .
|
gofimports -w -company github.com/make-go-great .
|
||||||
gofumpt -w -extra .
|
gofumpt -w -extra .
|
||||||
yarn prettier --write .
|
|
||||||
|
|
||||||
gen:
|
gen:
|
||||||
go run .
|
go run .
|
||||||
|
|
||||||
|
format-html:
|
||||||
|
yarn prettier --write .
|
||||||
|
|
Loading…
Reference in New Issue