-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.remarkrc
More file actions
26 lines (26 loc) · 763 Bytes
/
.remarkrc
File metadata and controls
26 lines (26 loc) · 763 Bytes
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
{
"settings": {
"bullet": "-",
"fence": "`",
"fences": "true",
"listItemIndent": "mixed",
"incrementListMarker": "true",
"resourceLink": "true",
"rule": "-"
},
"plugins": [
"remark-gfm",
"remark-preset-lint-markdown-style-guide",
"remark-preset-lint-recommended",
"remark-lint-list-item-spacing",
"remark-lint-list-item-content-indent",
"remark-lint-checkbox-content-indent",
["lint-fenced-code-marker", "`"],
["lint-list-item-indent", "space"],
["lint-list-item-spacing", {"checkBlanks": true}],
["lint-maximum-line-length", 120],
["lint-ordered-list-marker-style", "."],
["lint-ordered-list-marker-value", "ordered"],
["lint-unordered-list-marker-style", "consistent"]
]
}