diff --git a/mypy/config b/mypy/config index edc93f3..fa64f32 100644 --- a/mypy/config +++ b/mypy/config @@ -1,19 +1,19 @@ [mypy] -ignore_missing_imports = True -follow_imports = silent -show_column_numbers = True -show_error_codes = True +show_column_numbers = true +ignore_missing_imports = true +follow_imports = "silent" +show_error_codes = true -warn_unused_configs = True -allow_any_generics = False -allow_subclassing_any = False -allow_untyped_calls = False -allow_untyped_defs = False -allow_incomplete_defs = False -check_untyped_defs = True -allow_untyped_decorators = False -no_implicit_optional = True -warn_redundant_casts = True -warn_unused_ignores = True -warn_return_any = True -implicit_reexport = False +warn_unused_configs = true +allow_any_generics = false +allow_subclassing_any = false +allow_untyped_calls = false +allow_untyped_defs = false +allow_incomplete_defs = false +check_untyped_defs = true +allow_untyped_decorators = false +no_implicit_optional = true +warn_redundant_casts = true +warn_unused_ignores = true +warn_return_any = true +implicit_reexport = false diff --git a/templates/pyproject.toml b/templates/pyproject.toml index ff746ae..25a38ae 100644 --- a/templates/pyproject.toml +++ b/templates/pyproject.toml @@ -31,9 +31,9 @@ disable = [ ] [tool.mypy] +show_column_numbers = true ignore_missing_imports = true follow_imports = "silent" -show_column_numbers = true show_error_codes = true [tool.pytest.ini_options]