This commit is contained in:
2026-03-15 15:54:16 +01:00
parent cab4b6815e
commit 9f5b15b65b
7 changed files with 817 additions and 62 deletions
+7 -7
View File
@@ -1,19 +1,19 @@
install:
pip install -r requirement.txt
uv sync
run:
python3 a_maze_ing.py config.txt
uv run python3 a_maze_ing.py config.txt
debug:
pdb python3 a_maze_ing.py config.txt
uv pdb python3 a_maze_ing.py config.txt
clean:
rm -rf __pycache__ .mypy_cache
lint:
flake8 .
mypy . --warn-return-any --warn-unused-ignores --ignore-missing-imports --disallow-untyped-defs --check-untyped-defs
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
lint-strict:
flake8 .
mypy . --strict
uv run python3 -m flake8 .
uv run python3 -m mypy . --strict