shadow/tests/system/pyproject.toml
Iker Pedrosa 08028bb1a8 tests/system/pyproject.toml: add mypy rules
Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
2025-09-10 09:56:36 +02:00

20 lines
354 B
TOML

[[tool.mypy.overrides]]
module = "jc.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pytest"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pytest_mh.*"
ignore_missing_imports = true
[tool.isort]
line_length = 119
profile = "black"
add_imports = "from __future__ import annotations"
[tool.black]
line-length = 119