uv config

This commit is contained in:
2026-03-15 16:20:04 +01:00
parent 9f5b15b65b
commit 28b92ab7ee
3 changed files with 32 additions and 11 deletions
+5 -5
View File
@@ -1,7 +1,7 @@
install:
uv sync
run:
run: install
uv run python3 a_maze_ing.py config.txt
debug:
@@ -11,9 +11,9 @@ clean:
rm -rf __pycache__ .mypy_cache
lint:
uv run python3 -m flake8 .
uv run python3 -m mypy . --warn-return-any --warn-unused-ignores --ignore-missing-imports --disallow-untyped-defs --check-untyped-defs
uv run flake8 .
uv run mypy . --warn-return-any --warn-unused-ignores --ignore-missing-imports --disallow-untyped-defs --check-untyped-defs
lint-strict:
uv run python3 -m flake8 .
uv run python3 -m mypy . --strict
uv run flake8 .
uv run mypy . --strict