From 4a8e48822747c9e461fed29ebed5b69e350475ee Mon Sep 17 00:00:00 2001
From: Leander Karp <karp@cl.uni-heidelberg.de>
Date: Sun, 4 Aug 2024 19:08:33 +0200
Subject: [PATCH] Configure Mypy

Add mypy configuration in pyproject.toml
---
 pyproject.toml | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 pyproject.toml

diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..07d226e
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,7 @@
+[tool.mypy]
+disallow_untyped_calls = true
+disallow_untyped_defs = true
+disallow_incomplete_defs = true
+check_untyped_defs = true
+disallow_untyped_decorators = true
+
-- 
GitLab