From 34fce34204551128614f00697415019fdfb04fe5 Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Thu, 11 Jul 2024 11:25:40 +0100 Subject: [PATCH] Simplify my config for `mypy` For https://github.com/alexwlchan/alexwlchan/issues/15 --- pyproject.toml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index afdf0bb..f6a6484 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,18 +29,4 @@ fail_under = 90 [tool.mypy] mypy_path = "src" -check_untyped_defs = true -disallow_any_generics = true -disallow_incomplete_defs = true -disallow_subclassing_any = true -disallow_untyped_calls = true -disallow_untyped_decorators = true -disallow_untyped_defs = true -no_implicit_optional = true -no_implicit_reexport = true -show_error_codes = true -strict_equality = true -warn_redundant_casts = true -warn_return_any = true -warn_unused_configs = true -warn_unused_ignores = true +strict = true