From: Shane Jaroch Date: Sun, 26 Mar 2023 15:38:22 +0000 (-0400) Subject: update setup.cfg X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=e69368ff9a64db7134a212686c08922c6537bcee;p=nutratech%2Fnt-sqlite.git update setup.cfg --- diff --git a/setup.cfg b/setup.cfg index daec0d4..db70960 100644 --- 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