From 0bdd70035036513c1b64cef79872da8c847168b7 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Thu, 12 Feb 2026 19:42:20 -0500 Subject: [PATCH] Add justfile for project commands --- justfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..bf671c1 --- /dev/null +++ b/justfile @@ -0,0 +1,14 @@ +lint: + uv run ruff check --fix . + uv run ruff format . + +typecheck: + uvx ty check + +test: + uv run pytest + +check: lint + +run: + uv run python playscii.py