summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg16
1 files changed, 13 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index e48ddf6..e443a40 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,16 @@
-[bdist_wheel]
-universal = 1
-
[tool:pytest]
testpaths = tests
norecursedirs = .git
+
+[mypy]
+check_untyped_defs = true
+# TODO disallow_untyped_calls = true
+# TODO disallow_untyped_defs = true
+follow_imports = silent
+ignore_missing_imports = true
+no_implicit_optional = true
+warn_incomplete_stub = true
+warn_redundant_casts = true
+warn_return_any = true
+warn_unused_configs = true
+warn_unused_ignores = true