40 lines
554 B
TOML
40 lines
554 B
TOML
[tool.black]
|
|
line-length = 120
|
|
target-version = ["py312"]
|
|
extend-exclude = '''
|
|
(
|
|
\.git
|
|
| \.cache
|
|
| \.pytest_cache
|
|
| \.mypy_cache
|
|
| __pycache__
|
|
| node_modules
|
|
| \.venv
|
|
| venv
|
|
| build
|
|
| dist
|
|
| \.next
|
|
| out
|
|
| coverage
|
|
)
|
|
'''
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 120
|
|
extend_skip_glob = [
|
|
".git/**",
|
|
".cache/**",
|
|
".pytest_cache/**",
|
|
".mypy_cache/**",
|
|
"__pycache__/**",
|
|
"node_modules/**",
|
|
".venv/**",
|
|
"venv/**",
|
|
"build/**",
|
|
"dist/**",
|
|
".next/**",
|
|
"out/**",
|
|
"coverage/**",
|
|
]
|