Spaces:
Running
Running
File size: 357 Bytes
4dc0836 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | [tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP", "C4", "PIE", "SIM", "PERF", "G", "ISC", "B"]
ignore = [
# FastAPI's `Depends(...)` in an argument default is the documented
# dependency-injection pattern, not the mutable-default-argument bug
# this rule targets.
"B008",
]
|