2023-06-28 19:02:11 +02:00
|
|
|
[mypy]
|
|
|
|
check_untyped_defs = True
|
|
|
|
disallow_any_generics = True
|
2023-07-01 14:59:09 +02:00
|
|
|
disallow_untyped_defs = True
|
|
|
|
disallow_any_unimported = True
|
|
|
|
no_implicit_optional = True
|
|
|
|
warn_return_any = True
|
|
|
|
show_error_codes = True
|
|
|
|
warn_unused_ignores = True
|
2023-07-20 23:52:07 +02:00
|
|
|
|
|
|
|
disallow_incomplete_defs = true
|
|
|
|
disallow_subclassing_any = true
|
|
|
|
disallow_untyped_calls = true
|
|
|
|
disallow_untyped_decorators = true
|
|
|
|
warn_unreachable = true
|