2023-09-18 13:41:34 +00:00
|
|
|
[tool.ruff]
|
|
|
|
target-version = "py311"
|
|
|
|
line-length = 88
|
|
|
|
|
|
|
|
select = ["E", "F", "I", "U"]
|
|
|
|
ignore = [ "E501" ]
|
|
|
|
|
2023-09-10 08:11:56 +00:00
|
|
|
[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
|