Add justfile for project commands
This commit is contained in:
parent
b6ddfcd74f
commit
52149750cf
1 changed files with 14 additions and 0 deletions
14
justfile
Normal file
14
justfile
Normal file
|
|
@ -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
|
||||
Loading…
Reference in a new issue