chore(lint): ignore G004 (logging-f-string), intentional style

Three AST/regex approaches had edge cases with format specs, nested
quotes, and ast.unparse compatibility. Suppressing G004 as acceptable
style until a proper libcst-based converter is available.
This commit is contained in:
Crypto Rug Munch 2026-07-08 05:30:54 +02:00
parent e0a8ec8007
commit c700c85ac3

View file

@ -89,6 +89,7 @@ ignore = [
"B008", # function calls in defaults (FastAPI Depends)
"S101", # assert (we use it in dev paths)
"N818", # exception naming (we use Error suffix)
"G004", # logging f-string (intentional — lazy %% is uglier)
]
[tool.ruff.lint.per-file-ignores]