Files
trading-journal/backend/ruff.toml
Tianyu Liu 616232b76d
All checks were successful
Backend CI / unit-test (push) Successful in 1m40s
add migration and enable ci
2025-09-13 21:14:14 +02:00

21 lines
278 B
TOML

target-version = "py39"
line-length = 144
[lint]
select = ["ALL"]
fixable = ["UP034", "I001"]
ignore = [
"T201",
"D",
"ANN101",
"TD002",
"TD003",
"TRY003",
"EM101",
"EM102",
"PLC0405",
]
[lint.extend-per-file-ignores]
"test*.py" = ["S101"]