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