21 lines
375 B
TOML
21 lines
375 B
TOML
|
[tool.black]
|
||
|
line-length = 120
|
||
|
target-version = ['py37', 'py38']
|
||
|
include = '\.pyi?$'
|
||
|
exclude = '''
|
||
|
(
|
||
|
/(
|
||
|
\.eggs # exclude a few common directories in the
|
||
|
| \.git # root of the project
|
||
|
| \.hg
|
||
|
| \.mypy_cache
|
||
|
| \.tox
|
||
|
| \.venv
|
||
|
| _build
|
||
|
| buck-out
|
||
|
| build
|
||
|
| dist
|
||
|
)/ # the root of the project
|
||
|
)
|
||
|
'''
|