From 138172ffdab35033b5d065b8499f8ad5e505a0ea Mon Sep 17 00:00:00 2001 From: pokrakam Date: Mon, 17 Aug 2020 19:37:18 +0100 Subject: [PATCH] Exclude test class with XML from line length check (#3755) * Exclude test class with XML from line length check We could also exclude all zcl_abapgit_object*testclasses or even test classes in general. * Correct syntax * Update abaplint.json * Update abaplint.json Co-authored-by: Lars Hvam --- abaplint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/abaplint.json b/abaplint.json index 4c533e88d..729690dd0 100644 --- a/abaplint.json +++ b/abaplint.json @@ -208,7 +208,8 @@ "ignoreFunctionModuleName": false }, "line_length": { - "length": 120 + "length": 120, + "exclude": ["zcl_abapgit_object_pdts.clas.testclasses.abap"] }, "line_only_punc": { "ignoreExceptions": true