forked from AY2223S1-CS2103T-W16-2/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlint.json
35 lines (35 loc) · 924 Bytes
/
.markdownlint.json
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
{
"MD004": { // Unordered list style
"style": "asterisk"
},
"MD009": { // Trailing spaces
"br_spaces": 0
},
"MD013": false, // Line length
"MD029": { // Ordered list item prefix
"style": "one"
},
"MD033": { // Inline HTML
"allowed_elements": ["sub", "sup", "br", "kbd"]
},
"MD035": { // Horizontal rule style
"style": "---"
},
"MD044": { // Proper names should have the correct capitalization
"names": ["FoodRem", "User Guide", "Developer Guide", "Command Input Box", "Command Output Box", "Item List Box"],
"code_blocks": false
},
"MD046": { // Code block style
"style": "fenced"
},
"MD048": { // Code fence style
"style": "backtick"
},
"MD049": { // Emphasis style should be consistent
"style": "underscore"
},
"MD050": { // Strong style should be consistent
"style": "asterisk"
},
"MD051": false // Link fragments should be valid
}