forked from LeeCampbell/MarsMissionFund
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
40 lines (28 loc) · 1 KB
/
.markdownlint.jsonc
File metadata and controls
40 lines (28 loc) · 1 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
{
// Line length — disabled; one-sentence-per-line governs structure
"MD013": false,
// Unordered list marker: dash only
"MD004": { "style": "dash" },
// Ordered list prefix: always 1.
"MD029": { "style": "one" },
// List indentation: 2 spaces
"MD007": { "indent": 2 },
// Heading style: ATX only
"MD003": { "style": "atx" },
// Code block style: fenced only
"MD046": { "style": "fenced" },
// Code fence style: backtick only
"MD048": { "style": "backtick" },
// Emphasis style: asterisk only
"MD049": { "style": "asterisk" },
// Strong style: asterisk only
"MD050": { "style": "asterisk" },
// Horizontal rule style: dashes
"MD035": { "style": "---" },
// No inline HTML — allow img/div for README badges/layout
"MD033": { "allowed_elements": ["img", "div", "br", "p", "a"] },
// Heading trailing punctuation — allow question marks
"MD026": { "punctuation": ".,;:!" },
// Table separator style: padded (spaces around dashes)
"MD060": { "style": "padded" }
}