-
Notifications
You must be signed in to change notification settings - Fork 0
/
.remarkrc
45 lines (45 loc) · 1.2 KB
/
.remarkrc
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
{
"settings": {
"commonmark": true,
"emphasis": "_",
"strong": "*",
"bullet": "-",
"listItemIndent": "space",
"incrementListMarker": true
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
"remark-preset-lint-markdown-style-guide",
"remark-lint-no-duplicate-headings",
["remark-lint-no-dead-urls", {
"skipOffline": true
}],
"remark-lint-heading-whitespace",
["remark-lint-maximum-line-length", 120],
["remark-lint-maximum-heading-length", 120],
["remark-lint-list-item-indent", "space"],
["remark-lint-list-item-spacing", false],
["remark-lint-strong-marker", "*"],
["remark-lint-emphasis-marker", "_"],
["remark-lint-unordered-list-marker-style", "-"],
["remark-lint-ordered-list-marker-style", "."],
["remark-lint-ordered-list-marker-value", "ordered"],
["remark-lint-write-good", [
"warn",
{
"passive": false,
"illusion": true,
"so": true,
"thereIs": true,
"weasel": true,
"adverb": true,
"tooWordy": true,
"cliches": true,
"eprime": false
}
]],
"remark-validate-links",
"remark-frontmatter"
]
}