Files
probo/GNUmakefile
gearnode 74cf5f4cc5 Fix format do not format all files
Signed-off-by: Bryan Frimin <bryan@frimin.fr>
2025-01-08 11:56:11 +01:00

19 lines
283 B
Makefile

NPX?= npx
PRETTIER?= $(NPX) prettier
CONTROL_SRC:= $(shell find ./controls -type f -name "*.md")
.PHONY: all
all: fmt
.PHONY: fmt
fmt:
$(PRETTIER) --write --prose-wrap always $(CONTROL_SRC)
.PHONY: fmt-check
fmt-check:
$(PRETTIER) --check --prose-wrap always $(CONTROL_SRC)