21 lines
501 B
INI
21 lines
501 B
INI
[mypy]
|
|
files = src,tests
|
|
check_untyped_defs = True
|
|
disallow_any_generics = True
|
|
ignore_missing_imports = True
|
|
no_implicit_optional = True
|
|
show_error_codes = True
|
|
strict_equality = True
|
|
warn_redundant_casts = True
|
|
warn_return_any = True
|
|
warn_unreachable = True
|
|
warn_unused_configs = True
|
|
no_implicit_reexport = True
|
|
local_partial_types = True
|
|
; workaround for https://github.com/python/mypy/issues/10709
|
|
ignore_missing_imports_per_module = True
|
|
|
|
|
|
[mypy-pytest_regressions]
|
|
disallow_untyped_defs = true
|