13
GNUmakefile
Normal file
13
GNUmakefile
Normal 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
|
||||
Reference in New Issue
Block a user