File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Original file line number Diff line number Diff line change @@ -45,11 +45,12 @@ Rebuild docs and run server via one terminal: `make dev_docs` (requires above, a
45
45
46
46
## Formatting / Linting
47
47
48
- The project uses [ black] and [ isort] (one after the other) and runs [ flake8] via CI. See the
49
- configuration in ` pyproject.toml ` and ` setup.cfg ` :
48
+ The project uses [ black] and [ isort] (one after the other) and runs [ flake8] and [ mypy ] via CI. See
49
+ the configuration in ` pyproject.toml ` and ` setup.cfg ` :
50
50
51
- ` make black isort ` : Run ` black ` first, then ` isort ` to handle import nuances ` make flake8 ` , to watch
52
- (requires ` entr(1) ` ): ` make watch_flake8 `
51
+ - ` make black isort ` : Run ` black ` first, then ` isort ` to handle import nuances
52
+ - ` make flake8 ` , to watch (requires ` entr(1) ` ): ` make watch_flake8 `
53
+ - ` make mypy ` , to watch (requires ` entr(1) ` ): ` make watch_mypy `
53
54
54
55
## Releasing
55
56
@@ -70,3 +71,4 @@ Update `__version__` in `__about__.py` and `pyproject.toml`::
70
71
[ black ] : https://github.com/psf/black
71
72
[ isort ] : https://pypi.org/project/isort/
72
73
[ flake8 ] : https://flake8.pycqa.org/
74
+ [ mypy ] : http://mypy-lang.org/
You can’t perform that action at this time.
0 commit comments