refactor: standardize codebase formatting, optimize import orders, and update GUI resolution to 1080p

This commit is contained in:
jack
2026-06-18 13:13:47 -07:00
parent 8ad2a9b972
commit 66942d250d
32 changed files with 453 additions and 120 deletions
+23
View File
@@ -0,0 +1,23 @@
.PHONY: install test lint fix typecheck run clean
install:
uv sync
test:
uv run pytest tests/
lint:
uv run ruff check src/
fix:
uv run ruff check src/ --fix
typecheck:
uv run mypy src/
run:
uv run python -m pygui
clean:
rm -rf .pytest_cache .ruff_cache .mypy_cache
find . -type d -name "__pycache__" -exec rm -rf {} +