From 3660830c23e6e4a3db62d5179de7121c3f490586 Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Fri, 12 Jul 2024 10:09:47 +0200 Subject: [PATCH] Mention pyright in developer docs --- DEVELOPING.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/DEVELOPING.md b/DEVELOPING.md index 1100e4d..cbfe9b3 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -5,8 +5,16 @@ This project uses [Poetry][] for packaging and dependency management. We’re using the following tools to ensure consistency and quality - [ruff](https://docs.astral.sh/ruff/) +- [pyright](https://microsoft.github.io/pyright/) - [pytest](https://docs.pytest.org/) +```bash +poetry install +poetry run ruff check . +poetry run pyright . +poetry run pytest +``` + [poetry]: https://python-poetry.org/ ## Releasing