docs: add markdownlint config for docs site

This commit is contained in:
Christian Visintin
2026-06-08 09:02:35 +02:00
parent 0db3ea43d2
commit ee69ba6ef8

15
.markdownlint-cli2.jsonc Normal file
View File

@@ -0,0 +1,15 @@
{
// Markdown lint config for the termscp docs site (mdBook).
"config": {
// Line length is impractical for keyboard/style tables and long prose;
// mdBook reflows in the browser, so we don't enforce a hard wrap.
"MD013": false
},
"globs": ["docs/**/*.md"],
"ignores": [
// mdBook build output.
"**/book/**",
// SUMMARY.md uses multiple level-1 headings as mdBook part titles.
"**/SUMMARY.md"
]
}