2019-11-25 17:08:18 +00:00
|
|
|
[tool.black]
|
2022-12-14 09:42:17 +00:00
|
|
|
line-length = 120
|
|
|
|
target-version = ['py310']
|
2019-11-25 17:08:18 +00:00
|
|
|
exclude = '''
|
|
|
|
/(
|
|
|
|
\.git
|
|
|
|
| \.hg
|
|
|
|
| \.mypy_cache
|
|
|
|
| \.tox
|
|
|
|
| \.venv
|
|
|
|
| _build
|
|
|
|
| buck-out
|
|
|
|
| build
|
|
|
|
| dist
|
|
|
|
)/
|
2022-12-14 09:42:17 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length = 120
|
|
|
|
length_sort = true
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "7.0"
|
|
|
|
asyncio_mode = "auto"
|
|
|
|
testpaths = [
|
|
|
|
"tests",
|
|
|
|
]
|
|
|
|
addopts = "-vv --tb=short --durations=5"
|