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