dcs_liberation/mypy.ini
Dan Albert fb964648a8 Use Pillow types from typeshed.
(cherry picked from commit a19a0b678974632549b418764c86b4714354cee1)
2021-08-08 12:52:04 -07:00

23 lines
585 B
INI

[mypy]
# TODO: Cleanup so we can enable the checks commented out here.
check_untyped_defs = True
# disallow_any_decorated = True
# disallow_any_expr = True
disallow_any_generics = True
# disallow_any_unimported = True
disallow_untyped_decorators = True
disallow_untyped_defs = True
follow_imports = silent
# implicit_reexport = False
namespace_packages = True
no_implicit_optional = True
warn_redundant_casts = True
# warn_return_any = True
warn_unreachable = True
warn_unused_ignores = True
[mypy-faker.*]
ignore_missing_imports = True
[mypy-shapely.*]
ignore_missing_imports = True