prompts/Makefile
sneak efbac580f9 Add repo scaffolding to meet repository standards
Add .gitignore, LICENSE (MIT), Makefile, Dockerfile, .dockerignore,
and pin prettier via yarn lockfile for integrity-checked markdown
formatting. Update REPO_POLICIES.md self-reference to point to this
repo. Format markdown files with prettier.
2026-02-22 15:40:29 +01:00

22 lines
372 B
Makefile

.PHONY: test lint fmt fmt-check check docker
PRETTIER := yarn run prettier
test:
@echo "No tests defined."
lint:
@echo "Linting markdown files..."
@$(PRETTIER) --check '**/*.md' --tab-width 4
fmt:
@$(PRETTIER) --write '**/*.md' --tab-width 4
fmt-check:
@$(PRETTIER) --check '**/*.md' --tab-width 4
check: test lint fmt-check
docker:
docker build -t prompts .