Files
trading-journal/backend/ruff.toml
Tianyu Liu 0ca660f268
Some checks failed
Backend CI / unit-test (push) Failing after 44s
wip loan update
2025-10-03 11:55:30 +02:00

28 lines
440 B
TOML

target-version = "py39"
line-length = 144
[lint]
select = ["ALL"]
fixable = ["UP034", "I001"]
ignore = [
"T201",
"D",
"ANN101",
"TD002",
"TD003",
"TRY003",
"EM101",
"EM102",
"SIM108",
"C901",
"PLR0912",
"PLR0915",
"PLR0913",
"PLC0415",
]
[lint.extend-per-file-ignores]
"test*.py" = ["S101", "S105", "S106", "PT011", "PLR2004"]
"models*.py" = ["FA102"]
"dto.py" = ["TC001", "TC003"]