make type checking more strict

This commit is contained in:
Jörg Thalheim
2023-11-30 13:42:15 +01:00
parent 65cdd51af2
commit 780ffb9c8f
9 changed files with 49 additions and 31 deletions

View File

@@ -19,8 +19,8 @@ test_driver = ["py.typed"]
target-version = "py311"
line-length = 88
select = ["E", "F", "I", "U", "N", "RUF"]
ignore = ["E501"]
select = ["E", "F", "I", "U", "N", "RUF", "ANN"]
ignore = ["E501", "ANN101", "ANN401"]
[tool.mypy]
python_version = "3.11"