Codebase list fastapi / 38f66367-fe91-4bea-b8b1-ccb1f1990ecd/main mypy.ini
38f66367-fe91-4bea-b8b1-ccb1f1990ecd/main

Tree @38f66367-fe91-4bea-b8b1-ccb1f1990ecd/main (Download .tar.gz)

mypy.ini @38f66367-fe91-4bea-b8b1-ccb1f1990ecd/mainraw · history · blame

[mypy]

# --strict
disallow_any_generics = True
disallow_subclassing_any = True 
disallow_untyped_calls = True 
disallow_untyped_defs = True
disallow_incomplete_defs = True 
check_untyped_defs = True 
disallow_untyped_decorators = True 
no_implicit_optional = True
warn_redundant_casts = True 
warn_unused_ignores = True
warn_return_any = True 
implicit_reexport = False
strict_equality = True
# --strict end

[mypy-fastapi.concurrency]
warn_unused_ignores = False
ignore_missing_imports = True

[mypy-fastapi.tests.*]
ignore_missing_imports = True
check_untyped_defs = True