refactor: split backend domains and add API behavior coverage

This commit is contained in:
3252a8
2026-05-13 18:38:10 +03:00
parent a96007d48a
commit 7401649841
103 changed files with 10558 additions and 9832 deletions
-3
View File
@@ -16,12 +16,9 @@ select = [
"I", # isort
]
ignore = [
"E501", # line length (legacy lines; tighten later if desired)
"E731", # lambda assignment (common in handlers)
"E701", # multiple statements on one line (compact early returns)
"E712", # `== True` / `== False` in SQLAlchemy filters
"E711", # `== None` on ORM columns (use `.is_(None)` in refactors)
"F841", # unused locals (clean up incrementally)
]
[tool.ruff.lint.isort]