clawpub/Makefile
clawbot f65ea86e4b
Some checks failed
check / check (push) Failing after 9s
implement repo policies: Makefile, Dockerfile, CI, prettier, editorconfig, LICENSE
Add failure stories section to OPENCLAW_TRICKS.md covering 10 real production
failures and fixes from the first three weeks of operation.
2026-02-28 02:06:35 -08:00

23 lines
376 B
Makefile

.PHONY: fmt fmt-check lint test check hooks
fmt:
npx prettier --write .
fmt-check:
npx prettier --check .
lint:
@echo "No linter configured for docs-only repo"
test:
@echo "No tests for docs-only repo"
check: fmt-check
@echo "All checks passed"
hooks:
echo '#!/bin/sh\nmake check' > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit
docker:
docker build .