File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343
4444 - id : mypy
4545 name : mypy
46- entry : make mypy
46+ entry : make dmypy
4747 language : system
48+ types : [python]
4849 pass_filenames : false
Original file line number Diff line number Diff line change 1- .PHONY : lint format mypy shellcheck markdownlint dockerlint tomlfmt prettier static _test-lightweight _test-medium _test-comprehensive test-lightweight test-medium test-comprehensive clean-cache clean-dev
1+ .PHONY : lint format mypy dmypy shellcheck markdownlint dockerlint tomlfmt prettier static _test-lightweight _test-medium _test-comprehensive test-lightweight test-medium test-comprehensive clean-cache clean-dev
22
33lint :
44 ruff check .
@@ -13,6 +13,9 @@ format:
1313mypy :
1414 uv run --frozen mypy
1515
16+ dmypy :
17+ uv run --frozen dmypy run -- src
18+
1619shellcheck :
1720 find . -name " *.sh" -not -path " ./legacy/*" -not -path " ./.venv/*" | xargs shellcheck
1821
@@ -53,6 +56,7 @@ clean-cache:
5356 find . -type d -name " .ruff_cache" -exec rm -rf {} +
5457 find . -type d -name " .mypy_cache" -exec rm -rf {} +
5558 find . -type d -name " .pytest_cache" -exec rm -rf {} +
59+ -uv run --frozen dmypy stop 2> /dev/null; rm -f .dmypy.json
5660
5761clean-dev : clean-cache
5862 find . -type d -name " *.egg-info" -exec rm -rf {} +
You can’t perform that action at this time.
0 commit comments