mirror of
https://github.com/maoakeEnterprise/amazing.git
synced 2026-04-28 16:04:35 +02:00
20 lines
382 B
Makefile
20 lines
382 B
Makefile
install:
|
|
uv sync
|
|
|
|
run: install
|
|
uv run python3 a_maze_ing.py config.txt
|
|
|
|
debug:
|
|
uv pdb python3 a_maze_ing.py config.txt
|
|
|
|
clean:
|
|
rm -rf __pycache__ .mypy_cache
|
|
|
|
lint:
|
|
uv run flake8 . --exclude=.venv
|
|
uv run mypy . --warn-return-any --warn-unused-ignores --ignore-missing-imports --disallow-untyped-defs --check-untyped-defs
|
|
|
|
lint-strict:
|
|
uv run flake8 .
|
|
uv run mypy . --strict
|