-
Notifications
You must be signed in to change notification settings - Fork 7
/
.remarkrc
39 lines (33 loc) · 1.44 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
{
"plugins": {
"remark-lint": {
"blockquote-indentation": ["error", 2],
"list-item-bullet-indent": ["error", true],
"list-item-indent": ["error", "space"],
"list-item-spacing": ["error", true],
"ordered-list-marker-style": ["error", "."],
"ordered-list-marker-value": ["error", "ordered"],
"unordered-list-marker-style": ["error", "-"],
"heading-style": ["error", "atx"],
"maximum-heading-length": ["error", 56],
"no-duplicate-headings": ["error", true],
"no-emphasis-as-heading": true,
"no-heading-content-indent": ["error", true],
"no-heading-indent": ["error", true],
"no-heading-like-paragraph": ["error", true],
"no-multiple-toplevel-headings": ["error", true],
"link-title-style": ["error", "\""],
"no-empty-url": ["error", true],
"no-literal-urls": ["error", true],
"emphasis-marker": ["error", "_"],
"strong-marker": ["error", "*"],
"no-inline-padding": ["error", true],
"code-block-style": ["error", "fenced"],
"fenced-code-marker": ["error", "`"],
"no-consecutive-blank-lines": ["error", true],
"no-missing-blank-lines": { "exceptTightLists": true },
"no-html": ["error", true],
"no-tabs": ["error", true]
}
}
}