Makefile: Add rules to run pyright & pyrefly
This commit is contained in:
parent
3d796afff1
commit
6afca61f10
1 changed files with 9 additions and 0 deletions
9
Makefile
9
Makefile
|
|
@ -46,6 +46,15 @@ test_venv:
|
|||
mypy:
|
||||
$(Q)mypy --strict --no-warn-unused-ignores src test
|
||||
|
||||
.PHONY: pyright
|
||||
pyright:
|
||||
$(Q)pyright src test
|
||||
|
||||
.PHONY: pyrefly
|
||||
pyrefly:
|
||||
$(Q)pyrefly check src test
|
||||
|
||||
|
||||
.PHONY: update
|
||||
update:
|
||||
$(Q)env PYTHONPATH=src $(PYTHON) -mwwvb.updateiers --dist
|
||||
|
|
|
|||
Loading…
Reference in a new issue