mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 08:36:11 +02:00
32 lines
780 B
JSON
32 lines
780 B
JSON
{
|
|
// https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
|
|
"config": {
|
|
"default": true,
|
|
// Allow long lines (common in docs with URLs and code)
|
|
"MD013": false,
|
|
// Allow duplicate headings in different sections
|
|
"MD024": { "siblings_only": true },
|
|
// Allow files to open with a centered HTML header block instead of an H1 (README)
|
|
"MD041": false,
|
|
// Allow inline HTML (docfx uses it)
|
|
"MD033": false,
|
|
// Allow bare URLs
|
|
"MD034": false,
|
|
// Allow compact table pipe style (flow docs use compact tables)
|
|
"MD060": false
|
|
},
|
|
|
|
"globs": ["**/*.md"],
|
|
|
|
"ignores": [
|
|
".dev/**",
|
|
"docs/_site/**",
|
|
"docs/api/**",
|
|
"node_modules/**",
|
|
"**/bin/**",
|
|
"**/obj/**",
|
|
"publish/**",
|
|
".claude/**"
|
|
]
|
|
}
|