13 lines
124 B
Makefile
13 lines
124 B
Makefile
.PHONY: all check lint test format
|
|
|
|
check: format lint test
|
|
|
|
test:
|
|
@scripts/test
|
|
|
|
lint:
|
|
@scripts/lint
|
|
|
|
format:
|
|
@stylua .
|