tidy: fix justfile, run.sh, run formatter

This commit is contained in:
Evan Quiney
2025-08-21 18:44:53 +01:00
committed by GitHub
parent be6f5ae7f1
commit 11f8b4ef33
96 changed files with 4091 additions and 2597 deletions

View File

@@ -2,19 +2,16 @@ default:
@just --list
fmt:
uv run ruff format master worker shared engines/*
uv run ruff format src
lint:
uv run ruff check --fix master worker shared engines/*
uv run ruff check --fix src
lint-check:
uv run ruff check master worker shared engines/*
uv run ruff check src
test:
uv run pytest master worker shared engines/*
test-fast:
uv run pytest master shared engines/*
uv run pytest src
check:
uv run basedpyright --project pyproject.toml