From 7c65f87d58ebb2f6149fecc67db791efd6f8820b Mon Sep 17 00:00:00 2001 From: Cyrille Nofficial Date: Thu, 27 Oct 2022 16:03:55 +0200 Subject: [PATCH] build: merge mypy.ini with pyproject.toml --- mypy.ini | 2 -- pyproject.toml | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 mypy.ini diff --git a/mypy.ini b/mypy.ini deleted file mode 100644 index b557067..0000000 --- a/mypy.ini +++ /dev/null @@ -1,2 +0,0 @@ -[mypy] -plugins = numpy.typing.mypy_plugin \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index cb9cc0a..1d780a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,3 +51,8 @@ style = 'semver' vcs = 'git' dirty = true bump = true + +[tool.mypy] +strict = true +warn_unused_configs = true +plugins = 'numpy.typing.mypy_plugin'