We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6872891 commit 64624acCopy full SHA for 64624ac
project_name/.gitignore.jinja
@@ -54,6 +54,7 @@ venv/
54
55
# development tools
56
.mypy_cache/
57
+.dmypy.json
58
.ruff_cache/
59
.hypothesis/
60
.benchmarks/
project_name/justfile.jinja
@@ -41,7 +41,7 @@ format-and-check:
41
# Run all code quality checks and tests, except pylint
42
check:
43
just test
44
- uv run mypy
+ just lint
45
uv run pre-commit run --all-files
46
47
# Format code and files
@@ -65,7 +65,7 @@ isort:
65
# Run linters: ruff and mypy
66
lint:
67
uv run ruff check
68
+ uv run dmypy run
69
70
# Run Pylint, might be slow
71
pylint:
0 commit comments