-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
.remarkrc
74 lines (74 loc) · 4.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"settings": {},
"plugins": {
"lint-blockquote-indentation": ["error", 2],
"lint-checkbox-character-style": ["error", {
"checked": "x",
"unchecked": " "
}],
"lint-code-block-style": ["error", "fenced"],
"lint-definition-case": ["error", true],
"lint-definition-spacing": ["error", true],
"lint-emphasis-marker": ["error", "_"],
"lint-fenced-code-flag": ["error", true],
"lint-fenced-code-marker": ["error", "`"],
"lint-file-extension": ["error", "md"],
"lint-final-definition": ["error", true],
"lint-final-newline": ["error", true],
"lint-first-heading-level": ["warn", 1],
"lint-hard-break-spaces": ["error", true],
"lint-heading-increment": ["error", true],
"lint-heading-style": ["error", "setext"],
"lint-heading-whitespace": ["error", true],
"lint-linebreak-style": ["error", "unix"],
"lint-link-title-style": ["error", "\""],
"lint-list-item-bullet-indent": ["error", true],
"lint-list-item-content-indent": ["error", true],
"lint-list-item-indent": ["error", "space"],
"lint-list-item-spacing": ["error", true],
"lint-maximum-heading-length": false,
"lint-maximum-line-length": ["error", 80],
"lint-no-auto-link-without-protocol": ["error", true],
"lint-no-blockquote-without-marker": ["error", true],
"lint-no-consecutive-blank-lines": ["error", true],
"lint-no-duplicate-definitions": ["error", true],
"lint-no-duplicate-headings": false,
"lint-no-duplicate-headings-in-section": ["error", true],
"lint-no-emphasis-as-heading": ["error", true],
"lint-no-empty-sections": ["error", true],
"lint-no-empty-url": ["error", true],
"lint-no-file-name-articles": ["error", true],
"lint-no-file-name-consecutive-dashes": ["error", true],
"lint-no-file-name-irregular-characters": ["error", "\\.a-zA-Z0-9-_"],
"lint-no-file-name-mixed-case": ["error", true],
"lint-no-file-name-outer-dashes": ["error", true],
"lint-no-heading-content-indent": ["error", true],
"lint-no-heading-indent": ["error", true],
"lint-no-heading-like-paragraph": ["error", true],
"lint-no-heading-punctuation": ["error", ".,;:!?"],
"lint-no-html": false,
"lint-no-inline-padding": ["error", true],
"lint-no-literal-urls": ["error", true],
"lint-no-missing-blank-lines": ["error", {
"exceptTightLists": true
}],
"lint-no-multiple-toplevel-headings": false,
"lint-no-paragraph-content-indent": ["error", true],
"lint-no-reference-like-url": ["error", true],
"lint-no-shell-dollars": ["error", true],
"lint-no-shortcut-reference-image": ["error", true],
"lint-no-shortcut-reference-link": ["error", true],
"lint-no-table-indentation": ["error", true],
"lint-no-tabs": ["error", true],
"lint-no-undefined-references": ["error", true],
"lint-no-unused-definitions": ["error", true],
"lint-no-url-trailing-slash": ["error", true],
"lint-ordered-list-marker-style": ["error", "."],
"lint-ordered-list-marker-value": ["error", "ordered"],
"lint-strong-marker": ["error", "*"],
"lint-table-cell-padding": ["error", "padded"],
"lint-table-pipe-alignment": ["error", true],
"lint-table-pipes": ["error", true],
"lint-unordered-list-marker-style": ["error", "*"]
}
}