21 lines
257 B
TOML
21 lines
257 B
TOML
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py38']
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| \.cache
|
|
| \.pytest_cache
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
| tests/data
|
|
)/
|
|
'''
|