20 lines
289 B
TOML
20 lines
289 B
TOML
[tool.black]
|
|
target_version = ['py35']
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
|
|
(
|
|
/(
|
|
\.eggs # exclude a few common directories in the
|
|
| \.git # root of the project
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.nox
|
|
| \.venv
|
|
| venv
|
|
| target
|
|
| dist
|
|
)/
|
|
)
|
|
'''
|