max-line-length = 88
ignore =
- W503, # line break before binary operator
+ # line break before binary operator
+ W503,
[isort]
[mypy]
-ignore_missing_imports = True
show_error_codes = True
-disable_error_code = import
+;show_error_context = True
+;pretty = True
+
+disallow_incomplete_defs = True
+disallow_untyped_defs = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
-strict_optional = False
-warn_redundant_casts = True
-warn_unused_ignores = True
+
+;strict_optional = True
+no_implicit_optional = True
+
+warn_return_any = True