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
|
[mypy]
python_version = 3.9
color_output = true
error_summary = true
files =
tests/,
src/aiohttp_asyncmdnsresolver/
# check_untyped_defs = true
# disallow_untyped_calls = 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-distutils.*]
ignore_missing_imports = true
[mypy-expandvars]
ignore_missing_imports = true
[mypy-pytest]
ignore_missing_imports = true
[mypy-tomllib]
ignore_missing_imports = true
|