2021-04-29 13:14:40 +02:00
|
|
|
[mypy]
|
2021-05-02 13:52:07 +02:00
|
|
|
disallow_untyped_calls = True
|
2021-04-29 13:14:40 +02:00
|
|
|
disallow_untyped_defs = True
|
|
|
|
disallow_incomplete_defs = True
|
|
|
|
check_untyped_defs = True
|
2021-05-02 13:52:07 +02:00
|
|
|
#disallow_untyped_decorators = True
|
2021-04-29 13:14:40 +02:00
|
|
|
no_implicit_optional = True
|
2021-05-02 13:52:07 +02:00
|
|
|
warn_redundant_casts = True
|
2021-04-29 13:14:40 +02:00
|
|
|
warn_unused_ignores = True
|
|
|
|
warn_return_any = True
|
2021-05-02 13:52:07 +02:00
|
|
|
warn_unreachable = True
|
2021-05-26 22:49:33 +02:00
|
|
|
plugins = marshmallow_dataclass.mypy
|
2021-05-02 13:52:07 +02:00
|
|
|
|
|
|
|
[mypy-constraint]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-parsimonious.*]
|
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[mypy-sortedcontainers]
|
2021-04-29 13:14:40 +02:00
|
|
|
ignore_missing_imports = True
|