diff --git a/mypy.ini b/mypy.ini index ed570d2..215033b 100644 --- a/mypy.ini +++ b/mypy.ini @@ -2,3 +2,12 @@ [mypy] python_version = 3.7 disallow_untyped_defs = True +disallow_incomplete_defs = True +disallow_untyped_calls = True +disallow_untyped_decorators = True +disallow_subclassing_any = True +disallow_any_generics = True +warn_unused_ignores = True +warn_unreachable = True +show_error_context = True +show_column_numbers = True