diff --git a/mypy.ini b/mypy.ini deleted file mode 100644 index 3bb68e1a..00000000 --- a/mypy.ini +++ /dev/null @@ -1,5 +0,0 @@ -[mypy] -disallow_untyped_defs = True -ignore_missing_imports = True -[mypy-tests.*] -ignore_errors = True diff --git a/pyproject.toml b/pyproject.toml index 7d199f22..9c5377b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,6 +82,17 @@ build-backend = "poetry.masonry.api" filterwarnings = ["error::UserWarning"] +[tool.mypy] +disallow_untyped_defs = false +ignore_missing_imports = true + +[[tool.mypy.overrides]] +module = [ + "tests.*", +] +ignore_errors = true + + [tool.bumpversion] current_version = "0.7.0" commit = false