mirror of
https://github.com/apidoorman/doorman.git
synced 2026-02-08 01:58:59 -06:00
23 lines
527 B
TOML
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"
|
|
|