initial commit

This commit is contained in:
2025-09-11 18:24:36 +00:00
commit ba58bb60ec
16 changed files with 335 additions and 0 deletions

10
backend/ruff.toml Normal file
View File

@@ -0,0 +1,10 @@
target-version = "py39"
line-length = 144
[lint]
select = ["ALL"]
fixable = ["UP034", "I001"]
ignore = ["T201", "D", "ANN101", "TD002", "TD003"]
[lint.extend-per-file-ignores]
"test*.py" = ["S101"]