feat(core): Set up native Python task runner project (no-changelog) (#18257)

This commit is contained in:
Iván Ovejero
2025-08-13 19:52:04 +02:00
committed by GitHub
parent ed2a490351
commit 8bc6ee727a
8 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
run:
uv run python src/main.py
sync:
uv sync
lint:
uv run ruff check
lintfix:
uv run ruff check --fix
format:
uv run ruff format
test:
@echo "No tests yet"
typecheck:
uv run ty check src/