mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 06:26:26 +00:00
b7dff549ab
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Rhys Arkins <rhys@arkins.net> Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
17 lines
431 B
Text
17 lines
431 B
Text
{
|
|
// Disable some built-in rules
|
|
"config": {
|
|
"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/**/*"]
|
|
}
|