From 062039b96cf783a2c12fc7caa1bb538e9427d872 Mon Sep 17 00:00:00 2001 From: "Pierre R. Mai" Date: Thu, 25 Sep 2025 09:50:10 +0200 Subject: [PATCH] Add new allowable rules minimum/maximum_length These checks are now supported by qc-osi-trace checker, so allow them in the CI tests. Signed-off-by: Pierre R. Mai --- rules.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules.yml b/rules.yml index 41db521c3..aa4c82e29 100644 --- a/rules.yml +++ b/rules.yml @@ -11,3 +11,5 @@ first_element: '^[ ]\b(first_element)\b' last_element: '^[ ]\b(last_element)\b' check_if: '^[ ](\bcheck_if\b)(.*\belse do_check\b)' is_set: '^[ ]\b(is_set)\b' +minimum_length: '^[ ]\b(minimum_length)\b: ([\s\d]+)$' +maximum_length: '^[ ]\b(maximum_length)\b: ([\s\d]+)$'