Files
beaver-agent/ruff.toml
T

41 lines
581 B
TOML

target-version = "py313"
[lint]
select = ["ALL"]
ignore = [
"D203",
"D212",
"COM812",
"T201",
"D1",
"PLC0415",
"ANN401",
"PLR0913",
"PLR2004",
"C901",
"PLR0911",
"PLR0912",
"CPY001",
"RUF001",
"RUF002",
"RUF003",
"S104",
"DTZ011",
]
unfixable = ["F401"]
[lint.per-file-ignores]
"config.py" = ["INP001"]
"policy.py" = ["INP001"]
"tests/*" = ["ALL"]
[lint.pydocstyle]
convention = "google"
[lint.isort]
split-on-trailing-comma = false
[format]
docstring-code-format = true
skip-magic-trailing-comma = true