Files
doorman/pyproject.toml
2025-12-10 23:09:05 -05:00

23 lines
527 B
TOML

[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = [
"E", "F", "I", "UP", "B", "W"
]
ignore = [
"B904" # Exception chaining is a style preference, not a functional requirement
]
[tool.ruff.lint.isort]
known-first-party = ["models", "services", "routes", "utils", "doorman"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
skip-magic-trailing-comma = true
line-ending = "lf"