32 lines
512 B
TOML
32 lines
512 B
TOML
|
|
# Black formatting
|
||
|
|
[tool.black]
|
||
|
|
line-length = 85
|
||
|
|
include = '\.pyi?$'
|
||
|
|
exclude = '''
|
||
|
|
/(
|
||
|
|
\.eggs # exclude a few common directories in the
|
||
|
|
| \.git # root of the project
|
||
|
|
| \.hg
|
||
|
|
| \.mypy_cache
|
||
|
|
| \.tox
|
||
|
|
| \.venv
|
||
|
|
| _build
|
||
|
|
| buck-out
|
||
|
|
| build
|
||
|
|
| dist
|
||
|
|
| wandb
|
||
|
|
| model
|
||
|
|
| dataset
|
||
|
|
| notebook
|
||
|
|
)/
|
||
|
|
'''
|
||
|
|
|
||
|
|
# iSort
|
||
|
|
[tool.isort]
|
||
|
|
profile = "black"
|
||
|
|
line_length = 85
|
||
|
|
multi_line_output = 3
|
||
|
|
include_trailing_comma = true
|
||
|
|
skip_gitignore = true
|
||
|
|
virtual_env = "venv"
|