backend: remove __main__ runner; typing: fix mypy across core and routes; tooling: use uv for pytest in pre-commit; security: narrow broad except in config; mypy: relax untyped decorator check for backend.app.main

This commit is contained in:
William Valentin
2025-09-15 01:25:25 -07:00
parent be520c14e9
commit b544399f9c
9 changed files with 69 additions and 58 deletions

View File

@@ -183,3 +183,7 @@ exclude = [
".venv",
"venv",
]
[[tool.mypy.overrides]]
module = ["backend.app.main"]
disable_error_code = ["misc"]