Add make targets

Signed-off-by: Bryan Frimin <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-01-08 11:17:31 +01:00
parent 99d32ca49d
commit 9f21618b06

13
GNUmakefile Normal file
View File

@@ -0,0 +1,13 @@
NPX?= npx
PRETTIER?= $(NPX) prettier
.PHONY: all
all:
.PHONY: fmt
fmt:
$(PRETTIER) --write --prose-wrap always controls/**/*.md
.PHONY: fmt-check
fmt-check:
$(PRETTIER) --check --prose-wrap always controls/**/*.md