diff --git a/mypy.ini b/mypy.ini index 83b0d15c..b44b1fbb 100644 --- a/mypy.ini +++ b/mypy.ini @@ -10,5 +10,9 @@ enable_error_code = ignore-without-code # Support namespace packages per https://github.com/python/mypy/issues/14057 explicit_package_bases = True -# Disable overload-overlap due to many false-positives -disable_error_code = overload-overlap +disable_error_code = + # Disabled due to many false-positives + overload-overlap, + # Disable import-untyped to avoid widespread failures. Remove when safe or when + # specific exclusions supersede this broad setting. + import-untyped,