This should hopefully prevent tools from suggesting changes like converting Optional and Union to use the `|` operator.
14 lines
245 B
TOML
14 lines
245 B
TOML
[tool.ruff]
|
|
line-length = 120
|
|
target-version = "py39"
|
|
|
|
[tool.ruff.lint]
|
|
# https://docs.astral.sh/ruff/rules/
|
|
extend-select = [
|
|
"B", # flake8-bugbear
|
|
"I", # isort
|
|
]
|
|
|
|
[tool.ruff.lint.isort]
|
|
force-single-line = true
|
|
lines-between-types = 1
|