From 9f21618b0640111ea61843b20868a76844d752c1 Mon Sep 17 00:00:00 2001 From: gearnode Date: Wed, 8 Jan 2025 11:17:31 +0100 Subject: [PATCH] Add make targets Signed-off-by: Bryan Frimin --- GNUmakefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GNUmakefile diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 000000000..6f6f1bf82 --- /dev/null +++ b/GNUmakefile @@ -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