Spaces:
Sleeping
Sleeping
[flake8] | |
max-line-length = 88 | |
extend-ignore = E203 | |
exclude = .git,__pycache__,build,dist | |
[mypy] | |
python_version = 3.8 | |
warn_return_any = True | |
warn_unused_configs = 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_no_return = True | |
warn_unreachable = True | |
[coverage:run] | |
source = app | |
omit = tests/* | |
[coverage:report] | |
exclude_lines = | |
pragma: no cover | |
def __repr__ | |
raise NotImplementedError | |
if __name__ == .__main__.: | |
pass | |
raise ImportError |