21 lines
270 B
TOML
21 lines
270 B
TOML
|
[tool.black]
|
||
|
py38 = true
|
||
|
include = '\.pyi?$'
|
||
|
exclude = '''
|
||
|
/(
|
||
|
\.git
|
||
|
| \.hg
|
||
|
| \.mypy_cache
|
||
|
| \.tox
|
||
|
| \.venv
|
||
|
| _build
|
||
|
| buck-out
|
||
|
| build
|
||
|
| dist
|
||
|
|
||
|
# The following are specific to Black, you probably don't want those.
|
||
|
| blib2to3
|
||
|
| tests/data
|
||
|
)/
|
||
|
'''
|