2021-03-10 06:53:46 +00:00
|
|
|
{
|
|
|
|
// Disable some built-in rules
|
|
|
|
"config": {
|
2023-12-01 10:12:32 +00:00
|
|
|
"no-emphasis-as-heading": false,
|
2021-03-10 06:53:46 +00:00
|
|
|
"fenced-code-language": false,
|
|
|
|
"first-line-heading": false,
|
|
|
|
"line-length": false,
|
|
|
|
"no-emphasis-as-header": false,
|
|
|
|
"no-inline-html": false,
|
2024-08-14 10:42:23 +00:00
|
|
|
"single-h1": false,
|
2021-03-10 06:53:46 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// Define glob expressions to use (only valid at root)
|
|
|
|
"globs": ["**/*.md"],
|
|
|
|
|
|
|
|
// Define glob expressions to ignore
|
2024-08-14 10:42:23 +00:00
|
|
|
"ignores": [
|
|
|
|
"**/__fixtures__/*",
|
|
|
|
"**/node_modules/**",
|
|
|
|
"tmp/**",
|
|
|
|
"**/.cache/**",
|
|
|
|
".venv/**",
|
|
|
|
"tools/mkdocs/docs/**",
|
|
|
|
"tools/mkdocs/site/**",
|
|
|
|
],
|
2021-03-10 06:53:46 +00:00
|
|
|
}
|