From 65b383d566a6fb90f80cf038d6cd929dac4898c4 Mon Sep 17 00:00:00 2001 From: "Ruben J. Jongejan" Date: Tue, 21 Jul 2026 17:32:44 +0200 Subject: [PATCH] feat(rumdl): update schema to v0.2.39 (#6074) Co-authored-by: github-actions[bot] --- src/schemas/json/rumdl.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/schemas/json/rumdl.json b/src/schemas/json/rumdl.json index 89106a758f6..7351f1ad81b 100644 --- a/src/schemas/json/rumdl.json +++ b/src/schemas/json/rumdl.json @@ -29,7 +29,7 @@ } }, "per-file-ignores": { - "description": "Per-file rule ignores: maps file patterns to lists of rules to ignore\nExample: { \"README.md\": [\"MD033\"], \"docs/**/*.md\": [\"MD013\"] }", + "description": "Per-file rule ignores: maps file patterns to lists of rules to ignore.\nPatterns are relative to the project root; a leading `~/` expands to the\nhome directory and absolute paths are matched as written.\nExample: { \"README.md\": [\"MD033\"], \"docs/**/*.md\": [\"MD013\"] }", "type": "object", "additionalProperties": { "type": "array", @@ -40,7 +40,7 @@ "default": {} }, "per-file-flavor": { - "description": "Per-file flavor overrides: maps file patterns to Markdown flavors\nExample: { \"docs/**/*.md\": MkDocs, \"**/*.mdx\": MDX }\nUses IndexMap to preserve config file order for \"first match wins\" semantics", + "description": "Per-file flavor overrides: maps file patterns to Markdown flavors.\nPatterns are relative to the project root; a leading `~/` expands to the\nhome directory and absolute paths are matched as written.\nExample: { \"docs/**/*.md\": MkDocs, \"**/*.mdx\": MDX }\nUses IndexMap to preserve config file order for \"first match wins\" semantics", "type": "object", "additionalProperties": { "$ref": "#/definitions/MarkdownFlavor" @@ -88,7 +88,7 @@ "default": [] }, "exclude": { - "description": "Files to exclude", + "description": "Files to exclude. Glob patterns, relative to the project root; a\nleading `~/` expands to the home directory and absolute paths are\nmatched as written.", "type": "array", "items": { "type": "string" @@ -96,7 +96,7 @@ "default": [] }, "include": { - "description": "Files to include", + "description": "Files to include. Glob patterns, relative to the project root; a\nleading `~/` expands to the home directory and absolute paths are\nmatched as written.", "type": "array", "items": { "type": "string" @@ -145,7 +145,7 @@ "default": false }, "cache-dir": { - "description": "Directory to store cache files (default: .rumdl_cache)\nCan also be set via --cache-dir CLI flag or RUMDL_CACHE_DIR environment variable", + "description": "Directory to store cache files (default: .rumdl_cache).\nA leading `~/` expands to the home directory; a relative path resolves\nagainst the project root.\nCan also be set via --cache-dir CLI flag or RUMDL_CACHE_DIR environment variable", "type": ["string", "null"] }, "cache": {