Files
docker-docs/.markdownlint.json
David Karlsson 50b97b01d5 lint: disable warning for reference links with shortcut syntax
The shortcut syntax is used by GitHub-style alerts and trigger a lint
warning.

Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
2024-08-15 22:06:22 +02:00

25 lines
642 B
JSON

{
"default": false,
"blanks-around-headings": true,
"hr-style": true,
"heading-start-left": true,
"single-h1": true,
"no-trailing-punctuation": true,
"no-missing-space-atx": true,
"no-multiple-space-atx": true,
"no-missing-space-closed-atx": true,
"no-multiple-space-closed-atx": true,
"no-space-in-emphasis": true,
"no-space-in-code": true,
"no-space-in-links": true,
"no-empty-links": true,
"ol-prefix": {"style": "ordered"},
"no-reversed-links": true,
"reference-links-images": {
"shortcut_syntax": false
},
"fenced-code-language": true,
"table-pipe-style": true,
"table-column-count": true
}