-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
23 lines (23 loc) · 938 Bytes
/
.markdownlint.jsonc
File metadata and controls
23 lines (23 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"default": true,
// Allow long lines; Prettier handles wrapping policy
"MD013": false,
// Allow inline HTML when needed
"MD033": false,
// First line need not be a top-level heading (many docs start with badges)
"MD041": false,
// Use fenced code blocks consistently (matches Prettier)
"MD046": { "style": "fenced" },
// Duplicate headings only matter among siblings
"MD024": { "siblings_only": true },
// Allow frontmatter title plus a top-level heading
"MD025": { "front_matter_title": "" },
// Allow uniform '1.' numbering (matches Prettier behavior)
"MD029": { "style": "one" },
// Permit bare URLs; Prettier won’t auto-wrap, and link checks are handled separately
"MD034": false,
// Allow exactly one blank line between blocks (Prettier’s behavior)
"MD012": { "maximum": 1 },
// Don’t flag the two trailing spaces used for hard line breaks in Markdown
"MD009": { "strict": false }
}