mirror of https://github.com/MISP/PyTaxonomies
20 lines
457 B
INI
20 lines
457 B
INI
[mypy]
|
|
disallow_untyped_calls=True
|
|
disallow_untyped_defs=True
|
|
disallow_incomplete_defs=True
|
|
check_untyped_defs=True
|
|
disallow_any_generics=True
|
|
python_version = 3.8
|
|
ignore_errors = False
|
|
ignore_missing_imports = False
|
|
strict_optional = True
|
|
no_implicit_optional = True
|
|
warn_unused_ignores = True
|
|
warn_redundant_casts = True
|
|
warn_unused_configs = True
|
|
warn_unreachable = True
|
|
|
|
show_error_context = True
|
|
pretty = True
|
|
exclude = pytaxonomies/data|tests|website
|