enowars5-service-stldoctor

STL-Analyzing A/D Service for ENOWARS5 in 2021
git clone https://git.sinitax.com/sinitax/enowars5-service-stldoctor
Log | Files | Refs | README | LICENSE | sfeed.txt

.mypy.ini (491B)


      1[mypy]
      2warn_redundant_casts = True
      3warn_unused_ignores = True
      4warn_no_return = True
      5warn_unreachable = True
      6
      7# Untyped Definitions and Calls
      8disallow_untyped_calls = True
      9disallow_untyped_defs = True
     10disallow_incomplete_defs = True
     11check_untyped_defs = True
     12disallow_untyped_decorators = True
     13
     14[mypy-tests.*]
     15disallow_untyped_calls = False
     16disallow_untyped_defs = False
     17disallow_incomplete_defs = False
     18disallow_untyped_decorators = False
     19
     20[mypy-enochecker3]
     21ignore_missing_imports = True
     22
     23