16 lines
198 B
TOML
16 lines
198 B
TOML
|
[tool.black]
|
||
|
line-length = 120
|
||
|
target_version = ['py37', 'py38', 'py39']
|
||
|
exclude = '''
|
||
|
(
|
||
|
/(
|
||
|
| \.git
|
||
|
| \.venv
|
||
|
| \.mypy_cache
|
||
|
)/
|
||
|
)
|
||
|
'''
|
||
|
|
||
|
[tool.isort]
|
||
|
line_length = 120
|
||
|
profile = "black"
|