From 347a27dd5a95a890ac1d615e46e94d9676dd2f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sat, 19 Nov 2022 14:43:26 +0000 Subject: [PATCH] Add initial config for mypy. --- pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..e6c10209 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +[tool.mypy] +warn_redundant_casts = true +warn_unused_configs = true +check_untyped_defs = true + +[[tool.mypy.overrides]] +module = [ + "fixtures.*", + "testresources.*", + "testscenarios.*", + "pbr.*", +] +ignore_missing_imports = true