2020-09-11 19:38:04 +00:00
|
|
|
[mypy]
|
|
|
|
ignore_missing_imports = True
|
2020-09-18 19:49:21 +00:00
|
|
|
plugins=mypy_zope:plugin
|
2023-02-03 22:30:07 +00:00
|
|
|
show_column_numbers = True
|
|
|
|
pretty = True
|
|
|
|
show_error_codes = True
|
|
|
|
warn_unused_configs =True
|
2023-02-06 21:29:53 +00:00
|
|
|
no_implicit_optional = True
|
2023-02-03 22:30:07 +00:00
|
|
|
warn_redundant_casts = True
|
2023-03-08 21:19:08 +00:00
|
|
|
strict_equality = True
|
2023-03-13 16:04:52 +00:00
|
|
|
|
|
|
|
[mypy-allmydata.test.cli.wormholetesting]
|
|
|
|
warn_unused_configs = True
|
|
|
|
disallow_any_generics = True
|
|
|
|
disallow_subclassing_any = True
|
|
|
|
disallow_untyped_calls = True
|
|
|
|
disallow_untyped_defs = True
|
|
|
|
disallow_incomplete_defs = True
|
|
|
|
check_untyped_defs = True
|
|
|
|
disallow_untyped_decorators = True
|
|
|
|
warn_redundant_casts = True
|
|
|
|
warn_unused_ignores = True
|
|
|
|
warn_return_any = True
|
|
|
|
no_implicit_reexport = True
|
|
|
|
strict_equality = True
|
|
|
|
strict_concatenate = True
|