feat(infra): auto-commit con 1 cambios

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-08 00:27:18 +02:00
parent fc627930f9
commit c9bb356ffe
+50 -17
View File
@@ -305,23 +305,56 @@ func auditPyApp(appDir string, all map[string]auditFnMeta) []string {
// E.g. "sqlite_open" → "SQLiteOpen", "http_json_response" → "HTTPJSONResponse".
// Common abbreviations are uppercased in full.
var commonAbbrevs = map[string]string{
"http": "HTTP",
"sql": "SQL",
"url": "URL",
"api": "API",
"id": "ID",
"db": "DB",
"tls": "TLS",
"json": "JSON",
"xml": "XML",
"ssh": "SSH",
"cmd": "Cmd",
"ctx": "Ctx",
"cfg": "Cfg",
"env": "Env",
"io": "IO",
"ok": "OK",
"ui": "UI",
"http": "HTTP",
"https": "HTTPS",
"sql": "SQL",
"sqlite": "SQLite",
"url": "URL",
"api": "API",
"id": "ID",
"db": "DB",
"tls": "TLS",
"tcp": "TCP",
"udp": "UDP",
"ip": "IP",
"json": "JSON",
"yaml": "YAML",
"xml": "XML",
"html": "HTML",
"css": "CSS",
"csv": "CSV",
"ssh": "SSH",
"jwt": "JWT",
"oauth": "OAuth",
"oauth2": "OAuth2",
"spa": "SPA",
"cors": "CORS",
"rbac": "RBAC",
"crud": "CRUD",
"cli": "CLI",
"cpu": "CPU",
"gpu": "GPU",
"os": "OS",
"s3": "S3",
"gcs": "GCS",
"bq": "BQ",
"ttl": "TTL",
"rgb": "RGB",
"rgba": "RGBA",
"sse": "SSE",
"ws": "WS",
"smtp": "SMTP",
"imap": "IMAP",
"pop3": "POP3",
"dns": "DNS",
"vpn": "VPN",
"cmd": "Cmd",
"ctx": "Ctx",
"cfg": "Cfg",
"env": "Env",
"io": "IO",
"ok": "OK",
"ui": "UI",
}
func snakeToPascal(s string) string {