fix: make ruff lint pass in CI
CI / lint (push) Successful in 4s
CI / build (push) Successful in 9m20s
Build & Push Container Image / build-and-push (push) Failing after 10s
CI / docker (push) Successful in 28s

Add .ruff.toml ignoring BLE001/S110 (intentional mail parsing), apply
ruff auto-fixes (imports, Optional->X|None), and fix format, shebang and
PORT env default.
This commit is contained in:
2026-08-02 16:23:46 -04:00
parent b3e44d8ffb
commit 6d1d274457
2 changed files with 30 additions and 30 deletions
+5
View File
@@ -0,0 +1,5 @@
target-version = "py310"
[lint]
# Blind excepts and silent cleanup in mail parsing are intentional here.
ignore = ["BLE001", "S110"]