mirror of
https://github.com/twitter/the-algorithm-ml.git
synced 2024-11-16 13:19:23 +01:00
2cc1abedd7
Signed-off-by: wiseaidev <business@wiseai.dev>
22 lines
267 B
TOML
22 lines
267 B
TOML
[tool.black]
|
|
line-length = 100
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.hg
|
|
| \.pem
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
|
|
[tool.isort]
|
|
multi_line_output = 3
|
|
line_length = 21
|
|
include_trailing_comma = true |