2019-09-05 23:16:09 +00:00
|
|
|
[tool.black]
|
|
|
|
target_version = ['py35']
|
|
|
|
include = '\.pyi?$'
|
|
|
|
exclude = '''
|
|
|
|
|
|
|
|
(
|
|
|
|
/(
|
|
|
|
\.eggs # exclude a few common directories in the
|
|
|
|
| \.git # root of the project
|
|
|
|
| \.mypy_cache
|
|
|
|
| \.tox
|
2022-01-16 16:12:40 +00:00
|
|
|
| \.nox
|
2019-09-05 23:16:09 +00:00
|
|
|
| \.venv
|
|
|
|
| venv
|
|
|
|
| target
|
|
|
|
| dist
|
|
|
|
)/
|
|
|
|
)
|
2022-01-16 16:12:40 +00:00
|
|
|
'''
|