-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
48 lines (37 loc) · 1.87 KB
/
.markdownlint.jsonc
File metadata and controls
48 lines (37 loc) · 1.87 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
// Configuration for markdownlint
// See https://github.com/DavidAnson/markdownlint/blob/v0.32.1/schema/.markdownlint.jsonc
{
// Default state for all rules
"default": true,
// MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md
// Justification: Line length standard has not been defined
"MD013": false,
// MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md024.md
// Justification: Some sections have a common template sub-heading format.
"MD024": {
// Only check sibling headings
"siblings_only": true
},
// MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md029.md
"MD029": {
"style": "one"
},
// MD046/code-block-style : Code block style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md046.md
// Justification: Code blocks are used for text
"MD046": false,
// MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md033.md
// Justification: VitePress pages use Vue script setup and custom components
"MD033": {
"allowed_elements": ["script", "mission-meta", "missions", "breadcrumb", "products-index", "tags-index", "VPTeamMembers", "analytics-tag"]
},
// MD012/no-multiple-blanks — not enforced
"MD012": false,
// MD022/blanks-around-headings — frontmatter end (---) is not a blank line
// Justification: VitePress frontmatter is immediately followed by content
"MD022": false,
// MD003/heading-style — not enforced; allow both atx (#) and setext (---) styles
"MD003": false,
// MD060/table-column-style : Table column style : https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md060.md
// Justification: Mixed table styles are used throughout
"MD060": false
}