-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
51 lines (39 loc) · 1.13 KB
/
.markdownlint-cli2.jsonc
File metadata and controls
51 lines (39 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"config": {
"default": true,
// Mintlify pages use YAML frontmatter at the top.
"MD041": false,
// We intentionally use inline HTML tables for Mintlify cards.
"MD033": false,
// Keep docs readable; avoid noisy line-length failures.
"MD013": false,
// Allow bare URLs in custom tags/Mintlify blocks.
"MD034": false,
// Existing docs use compact pipe table style.
"MD060": false,
// MDX files have frontmatter title AND h1 (normal for Mintlify)
"MD025": false,
// Trailing newlines handled by formatters
"MD047": false,
// Code blocks without language are valid in MDX
"MD040": false,
// Blank lines around fences - relaxed for MDX
"MD031": false,
// Code block style - allow both fenced and indented
"MD046": false,
// Trailing spaces - relaxed
"MD009": false,
// Lists should be surrounded by blank lines - relaxed for MDX
"MD032": false
},
"globs": [
"README.md",
"SECURITY.md",
"CONTRIBUTING.md",
"sdk/README.md",
"sdk/SECURITY.md",
"sdk/widgets/README.md",
"examples/README.md",
"examples/*/README.md"
]
}