17 lines
243 B
Makefile
17 lines
243 B
Makefile
.PHONY: all check format format-check lint test
|
|
|
|
all: format check
|
|
check: format-check lint test
|
|
|
|
format:
|
|
@stylua $(or $(FILES),.)
|
|
|
|
format-check:
|
|
@stylua --check $(or $(FILES),.)
|
|
|
|
lint:
|
|
@scripts/lint $(FILES)
|
|
|
|
test:
|
|
@scripts/test $(FILES)
|