8 lines
263 B
TOML
8 lines
263 B
TOML
# https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-format
|
|
[tool.black]
|
|
target-version = ["py39"]
|
|
|
|
# https://beta.ruff.rs/docs/settings/
|
|
[tool.ruff]
|
|
target-version = "py39"
|
|
extend-select = ["I"] # enable isort extension
|