2024-10-05 00:15:42 +02:00
|
|
|
[mypy]
|
|
|
|
|
python_version = 3.9
|
|
|
|
|
# belonging to --strict
|
|
|
|
|
warn_unused_configs = true
|
2024-10-13 15:20:44 +02:00
|
|
|
disallow_any_generics = true
|
|
|
|
|
disallow_subclassing_any = true
|
2024-10-05 00:15:42 +02:00
|
|
|
disallow_untyped_calls = true
|
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
|
disallow_untyped_decorators = true
|
|
|
|
|
disallow_incomplete_defs = true
|
|
|
|
|
check_untyped_defs = true
|
|
|
|
|
no_implicit_optional = true
|
|
|
|
|
warn_redundant_casts = true
|
|
|
|
|
warn_unused_ignores = false
|
|
|
|
|
warn_return_any = true
|
|
|
|
|
no_implicit_reexport = true
|
|
|
|
|
# extra options not in --strict
|
|
|
|
|
pretty = true
|
|
|
|
|
show_error_codes = true
|
|
|
|
|
show_column_numbers = true
|
|
|
|
|
warn_unreachable = true
|
|
|
|
|
strict_equality = true
|