]> Nutra Git (v1) - nutratech/nt-sqlite.git/commitdiff
update setup.cfg
authorShane Jaroch <chown_tee@proton.me>
Sun, 26 Mar 2023 15:38:22 +0000 (11:38 -0400)
committerShane Jaroch <chown_tee@proton.me>
Sun, 26 Mar 2023 15:39:16 +0000 (11:39 -0400)
setup.cfg

index daec0d467c3d3cae4d5d9af4129facd4ce7b7499..db7096016092037e925247c6ce21b6ea2e1bcd8f 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -10,7 +10,8 @@ per-file-ignores =
 max-line-length = 88
 
 ignore =
-    W503,  # line break before binary operator
+    # line break before binary operator
+    W503,
 
 
 [isort]
@@ -23,11 +24,16 @@ include_trailing_comma=true
 
 
 [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