We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2a590c commit 6377421Copy full SHA for 6377421
1 file changed
template/Justfile
@@ -40,12 +40,12 @@ coverage: _require-uv
40
41
# clean build artifacts and caches
42
clean:
43
- rm -rf .venv .pytest_cache .mypy_cache .ruff_cache
+ rm -rf .venv .pytest_cache .pyrefly .ruff_cache
44
find . -type d -name "__pycache__" -exec rm -r {} +
45
46
-# static type check with mypy
+# static type check with pyrefly
47
typecheck: _require-uv
48
- uv run mypy
+ uv run pyrefly check
49
50
# check code for common misspellings
51
spell: _require-uv
@@ -60,5 +60,5 @@ help:
60
61
alias fmt := format
62
alias cov := coverage
63
-alias mypy := typecheck
+alias pyrefly := typecheck
64
alias dev := sync
0 commit comments