19 lines
388 B
TOML
19 lines
388 B
TOML
|
[tool.mypy]
|
||
|
python_version = "3.10"
|
||
|
warn_redundant_casts = true
|
||
|
disallow_untyped_calls = true
|
||
|
disallow_untyped_defs = true
|
||
|
no_implicit_optional = true
|
||
|
|
||
|
[[tool.mypy.overrides]]
|
||
|
module = "buildbot.*"
|
||
|
ignore_missing_imports = true
|
||
|
|
||
|
[[tool.mypy.overrides]]
|
||
|
module = "buildbot_worker.*"
|
||
|
ignore_missing_imports = true
|
||
|
|
||
|
[[tool.mypy.overrides]]
|
||
|
module = "twisted.*"
|
||
|
ignore_missing_imports = true
|