aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index b6ab484..b05edd9 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -32,6 +32,9 @@ include_package_data = True
[mypy]
ignore_missing_imports = True
disallow_untyped_defs = True
+check_untyped_defs = True
+strict = True
+warn_unused_ignores = False
[mypy-mu4web.main]
# NOTE Flask endpoints aren't typed.
@@ -40,5 +43,5 @@ disallow_untyped_defs = True
disallow_untyped_defs = False
[flake8]
-ignore = E731
+ignore = E731,D105,D107
max-line-length = 100