ClickHouse/tests/ci/.mypy.ini

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
557 B
INI
Raw Normal View History

2022-11-10 15:40:52 +00:00
[mypy]
warn_no_return = False
warn_unused_configs = True
disallow_subclassing_any = True
disallow_untyped_calls = False
disallow_untyped_defs = False
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_redundant_casts = True
2023-10-04 11:53:55 +00:00
# Unused ignores differs from version to version, so too many noizes
warn_unused_ignores = False
2022-11-10 15:40:52 +00:00
warn_return_any = True
no_implicit_reexport = True
strict_equality = True
2024-02-28 21:58:33 +00:00
extra_checks = True
2024-08-09 14:22:33 +00:00
ignore_missing_imports = True
logging-fstring-interpolation = False