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.
This commit is contained in:
2026-02-22 15:40:29 +01:00
parent af257bef63
commit efbac580f9
9 changed files with 189 additions and 5 deletions

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
.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 .