.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)
