12 lines
297 B
TOML
12 lines
297 B
TOML
[tool.ruff]
|
|
line-length = 120
|
|
indent-width = 4
|
|
target-version = "py38"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "B", "I"]
|
|
ignore = ["B008", "F403", "F401"] # Allow Depends() calls in function defaults, star imports and unused imports
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space" |