From a534dfcf7e5c605504a2a9167a573275df4d8b57 Mon Sep 17 00:00:00 2001 From: "Ruben J. Jongejan" Date: Mon, 16 Feb 2026 20:13:46 +0100 Subject: [PATCH] feat(rumdl): update schema to v0.1.22 (#5372) Co-authored-by: github-actions[bot] --- src/schemas/json/rumdl.json | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/src/schemas/json/rumdl.json b/src/schemas/json/rumdl.json index ab42301eb13..4a8866dba3b 100644 --- a/src/schemas/json/rumdl.json +++ b/src/schemas/json/rumdl.json @@ -126,8 +126,29 @@ "default": 80 }, "output-format": { - "description": "Output format for linting results (e.g., \"text\", \"json\", \"pylint\", etc.)", - "type": ["string", "null"] + "description": "Output format for linting results", + "oneOf": [ + { + "type": "string", + "enum": [ + "text", + "full", + "concise", + "grouped", + "json", + "json-lines", + "github", + "gitlab", + "pylint", + "azure", + "sarif", + "junit" + ] + }, + { + "type": "null" + } + ] }, "fixable": { "description": "Rules that are allowed to be fixed when --fix is used\nIf specified, only these rules will be fixed",