bambi6-service-postit

Simple Note-Taking A/D Service for BambiCTF6 in 2021
git clone https://git.sinitax.com/sinitax/bambi6-service-postit
Log | Files | Refs | README | LICENSE | sfeed.txt

.mypy.ini (458B)


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