44 lines
772 B
INI
44 lines
772 B
INI
[mypy]
|
|
python_version = 3.9
|
|
|
|
ignore_missing_imports = True
|
|
|
|
disallow_any_generics = True
|
|
|
|
disallow_untyped_defs = True
|
|
disallow_incomplete_defs = True
|
|
check_untyped_defs = True
|
|
disallow_untyped_decorators = True
|
|
|
|
no_implicit_optional = True
|
|
strict_optional = True
|
|
|
|
warn_redundant_casts = True
|
|
warn_unused_ignores = True
|
|
warn_no_return = True
|
|
warn_return_any = True
|
|
warn_unreachable = True
|
|
|
|
show_none_errors = True
|
|
ignore_errors = False
|
|
|
|
allow_untyped_globals = False
|
|
allow_redefinition = False
|
|
implicit_reexport = True
|
|
strict_equality = True
|
|
|
|
show_error_context = False
|
|
show_column_numbers = True
|
|
show_error_codes = True
|
|
color_output = True
|
|
error_summary = True
|
|
pretty = True
|
|
|
|
mypy_path = .
|
|
|
|
[mypy-cytoolz.*]
|
|
ignore_errors = True
|
|
|
|
[mypy-vsutil.*]
|
|
implicit_reexport = True
|