File size: 314 Bytes
10aced5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | target-version = "py311"
line-length = 100
[lint]
select = ["E", "F", "W", "I", "UP", "B", "C4", "RUF"]
ignore = [
"E501", # line too long — handled by formatter
"B008", # function call in default argument (FastAPI pattern)
]
[lint.per-file-ignores]
"tests/*" = ["S101"] # assert is fine in tests
|