mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-10 14:06:30 +00:00
d90de484b1
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
26 lines
575 B
Text
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/**",
|
|
],
|
|
}
|