From e8e58e76c4c81ddf8c8f4f02607d5c6085252b8c Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Thu, 3 Aug 2023 18:35:25 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=20Move=20mypy=20settings=20to=20pypro?= =?UTF-8?q?ject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 4 ++++ setup.cfg | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5359cd9..e2819f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,3 +57,7 @@ addopts = "--strict-markers" markers = [ "integration: integration tests", ] + + +[tool.mypy] +ignore_missing_imports = true diff --git a/setup.cfg b/setup.cfg index aeec880..b74e617 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,6 +7,3 @@ max-line-length = 88 [pylint.messages_control] disable = C0330, C0326 - -[mypy] -ignore_missing_imports = True