tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

mypy.ini (462B)


      1 [mypy]
      2 ignore_missing_imports = True
      3 
      4 # The following are the flags enabled by --strict
      5 warn_unused_configs = True
      6 disallow_subclassing_any = True
      7 disallow_any_generics = True
      8 disallow_untyped_calls = True
      9 disallow_untyped_defs = True
     10 disallow_incomplete_defs = True
     11 check_untyped_defs = True
     12 disallow_untyped_decorators = True
     13 no_implicit_optional = True
     14 warn_redundant_casts = True
     15 warn_unused_ignores = True
     16 warn_return_any = True
     17 no_implicit_reexport = True