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 2598147 commit a62cf3bCopy full SHA for a62cf3b
Makefile
@@ -44,5 +44,11 @@ flake8:
44
watch_flake8:
45
if command -v entr > /dev/null; then ${PY_FILES} | entr -c $(MAKE) flake8; else $(MAKE) flake8 entr_warn; fi
46
47
+mypy:
48
+ poetry run mypy `${PY_FILES}`
49
+
50
+watch_mypy:
51
+ if command -v entr > /dev/null; then ${PY_FILES} | entr -c $(MAKE) mypy; else $(MAKE) mypy entr_warn; fi
52
53
format_markdown:
54
prettier --parser=markdown -w *.md docs/*.md docs/**/*.md CHANGES
0 commit comments