File size: 755 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
[mypy]
python_version = 3.8
color_output = True
error_summary = True
check_untyped_defs = True
disallow_untyped_defs = True
disallow_any_generics = True
enable_error_code =
ignore-without-code
follow_imports = normal
ignore_missing_imports = False
pretty = true
show_column_numbers = true
show_error_codes = true
strict_optional = True
warn_no_return = True
warn_redundant_casts = True
warn_unused_ignores = True
[mypy-Cython.*]
ignore_missing_imports = true
[mypy-distutils.*]
ignore_missing_imports = true
[mypy-expandvars]
ignore_missing_imports = true
[mypy-pep517_backend.*]
check_untyped_defs = False
disallow_any_generics = False
disallow_untyped_defs = False
warn_unused_ignores = False
[mypy-tomllib]
ignore_missing_imports = true
|