base of sqlalchemy alembic

This commit is contained in:
2026-01-10 13:54:54 -05:00
parent b87f6b0b34
commit 0109167b10
9 changed files with 410 additions and 2 deletions

View File

@@ -47,12 +47,17 @@ lint.ignore = [
"T201", # (perm) I don't care about print statements dir
"ERA001", # (perm) I don't care about print statements dir
]
"python/splendor/**" = [
"S311", # (perm) there is no security issue here
"T201", # (perm) I don't care about print statements dir
"PLR2004", # (temps) need to think about this
]
"python/orm/**" = [
"TC003", # (perm) this creates issues because sqlalchemy uses these at runtime
]
"python/alembic/**" = [
"INP001", # (perm) this creates LSP issues for alembic
]
[tool.ruff.lint.pydocstyle]
convention = "google"