summaryrefslogtreecommitdiff
path: root/mypy.ini
diff options
context:
space:
mode:
Diffstat (limited to 'mypy.ini')
-rw-r--r--mypy.ini15
1 files changed, 8 insertions, 7 deletions
diff --git a/mypy.ini b/mypy.ini
index 5d404f4b2..33b6556db 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -4,23 +4,24 @@
python_version = 3.6
# --strict
-warn_redundant_casts = True
-warn_unused_ignores = True
+warn_unused_configs = True
+# disallow_any_generics = True
disallow_subclassing_any = True
-disallow_untyped_decorators = True
-## https://github.com/python/mypy/issues/5957
-# warn_unused_configs = True
# disallow_untyped_calls = True
# disallow_untyped_defs = True
## https://github.com/python/mypy/issues/5954
# disallow_incomplete_defs = True
check_untyped_defs = True
+disallow_untyped_decorators = True
# no_implicit_optional = True
+warn_redundant_casts = True
+warn_unused_ignores = True
# warn_return_any = True
-warn_unreachable = True
+# no_implicit_reexport = True
+strict_equality = True
# Other strictness flags
-strict_equality = True
+warn_unreachable = True
# Output
show_error_codes = True