From 10627fb56f4b0a62ad0661dc290cd68345c41408 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Neumann?= <86975244+NeumannJoerg@users.noreply.github.com> Date: Fri, 5 Jul 2024 17:33:18 +0200 Subject: [PATCH] Update abaplint.json Deactivated check "sql_escape_host_variables", since it delivered false positives. Escaping SQL Host Variables with "@" became possible with ABAP 740 SP 05, but this API is using ABAP 740 SP 02, so I cannot do, what the check result tells me without breaking the code. --- abaplint.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/abaplint.json b/abaplint.json index 1a8d403..a61059d 100644 --- a/abaplint.json +++ b/abaplint.json @@ -662,10 +662,7 @@ "ignoreGlobalDefinition": true, "ignoreExceptions": true }, - "sql_escape_host_variables": { - "exclude": [], - "severity": "Error" - }, + "sql_escape_host_variables": false, "start_at_tab": { "exclude": [], "severity": "Error"