update deps, add util config

This commit is contained in:
Daniel Fichtinger 2025-06-15 21:52:23 -04:00
parent 53f09b72db
commit 8f0e420a8f
3 changed files with 248 additions and 11 deletions

15
justfile Normal file
View file

@ -0,0 +1,15 @@
# list recipes
default:
@just --list
format:
uv run ruff format
check:
uv run ruff check .
fix:
uv run ruff check --fix .
test:
uv run pytest