mirror of https://github.com/encode/starlette.git
20 lines
376 B
INI
20 lines
376 B
INI
[flake8]
|
|
ignore = W503, E203, B305
|
|
max-line-length = 88
|
|
|
|
[mypy]
|
|
disallow_untyped_defs = True
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-tests.*]
|
|
disallow_untyped_defs = False
|
|
# https://github.com/encode/starlette/issues/1045
|
|
# check_untyped_defs = True
|
|
|
|
[tool:isort]
|
|
profile = black
|
|
combine_as_imports = True
|
|
|
|
[tool:pytest]
|
|
addopts = --cov-report= --cov=starlette --cov=tests -rxXs
|