build: add lint, format, typecheck make targets and ty dependency

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Vinta Chen
2026-05-03 12:23:37 +08:00
parent d3f35a9d21
commit 432a1f4b71
3 changed files with 42 additions and 3 deletions
+9
View File
@@ -10,6 +10,15 @@ fetch_github_stars:
test:
uv run pytest website/tests/ -v
lint:
uv run ruff check .
format:
uv run ruff format .
typecheck:
uv run ty check website
build:
uv run python website/build.py