Skip to content

Commit a542430

Browse files
committed
docs(workflow): Note mypy
1 parent d7c75db commit a542430

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

docs/contributing/workflow.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ Rebuild docs and run server via one terminal: `make dev_docs` (requires above, a
4545

4646
## Formatting / Linting
4747

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`:
5050

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`
5354

5455
## Releasing
5556

@@ -70,3 +71,4 @@ Update `__version__` in `__about__.py` and `pyproject.toml`::
7071
[black]: https://github.com/psf/black
7172
[isort]: https://pypi.org/project/isort/
7273
[flake8]: https://flake8.pycqa.org/
74+
[mypy]: http://mypy-lang.org/

0 commit comments

Comments
 (0)