From 7aca99f88395401cdf235fb41f98a9c33efed9d1 Mon Sep 17 00:00:00 2001 From: Lars Hvam Date: Tue, 1 Jul 2025 14:15:16 +0200 Subject: [PATCH 1/2] Update abaplint.jsonc, add dependencies --- abaplint.jsonc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/abaplint.jsonc b/abaplint.jsonc index 3589306..5a48f17 100644 --- a/abaplint.jsonc +++ b/abaplint.jsonc @@ -7,6 +7,16 @@ "url": "https://github.com/open-abap/open-abap-core", "files": "/src/**/*.*", "folder": "/lint_deps" + }, + { + "url": "https://github.com/microsoft/aisdkforsapabap", + "files": "/src/**/*.*", + "folder": "/aisdk_deps" + }, + { + "url": "https://github.com/oisee/zvdb", + "files": "/src/**/*.*", + "folder": "/zvdb_deps" } ], "syntax": { From d00f5acd690634f39f0dde37e978894cced70bc9 Mon Sep 17 00:00:00 2001 From: Lars Hvam Date: Tue, 1 Jul 2025 14:21:38 +0200 Subject: [PATCH 2/2] Update abaplint.jsonc, disable 7 bit check --- abaplint.jsonc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abaplint.jsonc b/abaplint.jsonc index 5a48f17..121fe5e 100644 --- a/abaplint.jsonc +++ b/abaplint.jsonc @@ -24,7 +24,7 @@ "errorNamespace": "^(Z|Y|LCL_|TY_|TS_|TT_|TTR_|LIF_)" }, "rules": { - "7bit_ascii": true, + "7bit_ascii": false, "ambiguous_statement": true, "parser_missing_space": true, "begin_end_names": true,