renovate/.markdownlint-cli2.jsonc
Michael Kriese d90de484b1
docs: validate with mkdocs (#30735)
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
2024-08-14 10:42:23 +00:00

26 lines
575 B
Text

{
// Disable some built-in rules
"config": {
"no-emphasis-as-heading": false,
"fenced-code-language": false,
"first-line-heading": false,
"line-length": false,
"no-emphasis-as-header": false,
"no-inline-html": false,
"single-h1": false,
},
// Define glob expressions to use (only valid at root)
"globs": ["**/*.md"],
// Define glob expressions to ignore
"ignores": [
"**/__fixtures__/*",
"**/node_modules/**",
"tmp/**",
"**/.cache/**",
".venv/**",
"tools/mkdocs/docs/**",
"tools/mkdocs/site/**",
],
}