Skip to content

Commit 6377421

Browse files
committed
feat(template): switch type checker to pyrefly
1 parent d2a590c commit 6377421

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

template/Justfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ coverage: _require-uv
4040

4141
# clean build artifacts and caches
4242
clean:
43-
rm -rf .venv .pytest_cache .mypy_cache .ruff_cache
43+
rm -rf .venv .pytest_cache .pyrefly .ruff_cache
4444
find . -type d -name "__pycache__" -exec rm -r {} +
4545

46-
# static type check with mypy
46+
# static type check with pyrefly
4747
typecheck: _require-uv
48-
uv run mypy
48+
uv run pyrefly check
4949

5050
# check code for common misspellings
5151
spell: _require-uv
@@ -60,5 +60,5 @@ help:
6060

6161
alias fmt := format
6262
alias cov := coverage
63-
alias mypy := typecheck
63+
alias pyrefly := typecheck
6464
alias dev := sync

0 commit comments

Comments
 (0)