21 lines
263 B
TOML
21 lines
263 B
TOML
[tool.black]
|
|
line-length = 88
|
|
target-version = ["py37", "py38", "py39", "py310"]
|
|
exclude = '''
|
|
|
|
(
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
| exceptions.py
|
|
)
|
|
'''
|