py-libp2p/mypy.ini

19 lines
449 B
INI
Raw Permalink Normal View History

[mypy]
2019-04-26 21:59:33 +08:00
check_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_defs = True
disallow_any_generics = True
disallow_untyped_calls = True
2019-04-26 21:59:33 +08:00
disallow_untyped_decorators = True
disallow_subclassing_any = False
2019-04-26 21:59:33 +08:00
ignore_missing_imports = True
2020-02-02 23:48:09 +08:00
incremental = False
strict_optional = False
warn_unused_ignores = True
2019-04-26 21:59:33 +08:00
strict_equality = True
warn_redundant_casts = True
warn_return_any = False
warn_unused_configs = True
2019-11-05 04:05:12 +08:00
warn_unreachable = True