Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions src/schemas/json/rumdl.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
"default": {
"enable": [],
"disable": [],
"extend-enable": [],
"extend-disable": [],
"exclude": [],
"include": [],
"respect-gitignore": true,
Expand Down Expand Up @@ -81,6 +83,22 @@
},
"default": []
},
"extend-enable": {
"description": "Additional rules to enable on top of the base set (additive across config levels)",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"extend-disable": {
"description": "Additional rules to disable on top of the base set (additive across config levels)",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"exclude": {
"description": "Files to exclude",
"type": "array",
Expand Down Expand Up @@ -155,7 +173,7 @@
"minimum": 0
},
"MarkdownFlavor": {
"description": "Markdown flavor/dialect. Accepts: standard, gfm, mkdocs, mdx, quarto, obsidian. Aliases: commonmark/github map to standard, qmd/rmd/rmarkdown map to quarto.",
"description": "Markdown flavor/dialect. Accepts: standard, gfm, mkdocs, mdx, quarto, obsidian, kramdown. Aliases: commonmark/github map to standard, qmd/rmd/rmarkdown map to quarto, jekyll maps to kramdown.",
"type": "string",
"enum": [
"standard",
Expand All @@ -168,7 +186,9 @@
"qmd",
"rmd",
"rmarkdown",
"obsidian"
"obsidian",
"kramdown",
"jekyll"
]
},
"CodeBlockToolsConfig": {
Expand Down