feat: add configuration for Black code formatter in config.toml

This commit is contained in:
OMGeeky
2025-06-07 13:24:35 +02:00
parent 6b8ec730c3
commit 7eea051d3a

21
.junie/config.toml Normal file
View File

@@ -0,0 +1,21 @@
[formatting]
tool = "black"
enabled = true
[formatting.black]
line-length = 88
target-version = ["py312"]
include = "\.pyi?$"
exclude = """
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
"""