Files
git.nvim/Makefile
T
2026-05-29 11:41:44 +02:00

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)