[tool.mypy] files = "." exclude = [".*venv.*", "install", "vcpkg"] follow_imports = "skip" show_column_numbers = true ignore_missing_imports = true # Importations disallow_any_unimported = true disallow_any_expr = true disallow_any_decorated = true disallow_any_explicit = true disallow_any_generics = true disallow_subclassing_any = true # Annotations disallow_untyped_calls = true disallow_untyped_defs = true disallow_incomplete_defs = true check_untyped_defs = true disallow_untyped_decorators = true # None et Optional implicit_optional = true strict_optional = true # Warnings warn_redundant_casts = true warn_unused_ignores = true warn_no_return = true warn_return_any = true warn_unreachable = true # Comportement strict strict_equality = true extra_checks = true local_partial_types = true # Divers implicit_reexport = false strict = true