INIclaw / Makefile
Nitish kumar
Upload folder using huggingface_hub
0722e92 verified
Raw
History Blame Contribute Delete
610 Bytes
.PHONY: check lint format lint-ts lint-py format-ts format-py docs docs-live docs-clean
check: lint-ts lint-py
@echo "All checks passed."
lint: lint-ts lint-py
lint-ts:
cd iniclaw && npm run check
lint-py:
cd iniclaw-blueprint && $(MAKE) check
format: format-ts format-py
format-ts:
cd iniclaw && npm run lint:fix && npm run format
format-py:
cd iniclaw-blueprint && $(MAKE) format
# --- Documentation ---
docs:
uv run --group docs sphinx-build -b html docs docs/_build/html
docs-live:
uv run --group docs sphinx-autobuild docs docs/_build/html --open-browser
docs-clean:
rm -rf docs/_build