1[mypy] 2check_untyped_defs = true 3disallow_any_generics = true 4disallow_any_unimported = true 5disallow_subclassing_any = true 6disallow_untyped_decorators = true 7disallow_untyped_defs = true 8follow_imports = silent 9implicit_reexport = false 10namespace_packages = true 11no_implicit_optional = true 12show_error_codes = true 13strict_equality = true 14warn_redundant_casts = true 15# Can't enable because mypy cannot reason about _get_subprocess_args. 16# warn_return_any = true 17warn_unreachable = true 18warn_unused_configs = true 19warn_unused_ignores = true 20