Lint python

This commit is contained in:
Andras Schmelczer 2026-01-25 21:46:02 +00:00
parent a2e4c29839
commit 86690f41f1
7 changed files with 1367 additions and 17 deletions

View file

@ -49,3 +49,9 @@ tasks:
desc: Run production server (serves built frontend)
cmds:
- uv run fastapi run server/main.py --port 8001
lint:
desc: Lint and format Python code
cmds:
- uv run ruff check --fix .
- uv run ruff format .