Files
beaver-gateway/ruff.toml
T
2026-05-19 11:26:47 +02:00

36 lines
507 B
TOML

target-version = "py313"
[lint]
select = ["ALL"]
ignore = [
"D203",
"D212",
"COM812",
"T201",
"D1",
"PLC0415",
"ANN401",
"PLR0913",
"PLR2004",
"C901",
"PLR0911",
"PLR0912",
]
unfixable = ["F401"]
[lint.per-file-ignores]
"tests/*" = ["ALL"]
"examples/*" = ["ALL"]
"t/*" = ["ALL"]
"*.lock" = ["ALL"]
[lint.pydocstyle]
convention = "google"
[lint.isort]
split-on-trailing-comma = false
[format]
docstring-code-format = true
skip-magic-trailing-comma = true