summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: f1ea10fbaec9faf6a3c84b87f46d2def6a8ad4be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tool.mypy]
ignore_missing_imports = true
disallow_any_generics = true
no_implicit_optional = true
pretty = true
show_column_numbers = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
namespace_packages = true
explicit_package_bases = true
exclude = ["thirdparty/"]

[tool.black]
line-length = 120
extend-exclude = ".*thirdparty/.*"