forked from stephenmoloney/ci-actions-copyleft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.remarkrc
68 lines (68 loc) · 2.54 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
{
"plugins": [
["remark-lint-checkbox-character-style", "consistent"],
["remark-lint-final-newline"],
["remark-lint-list-item-bullet-indent", "tab-size"],
["remark-lint-list-item-indent", "tab-size"],
["remark-lint-no-auto-link-without-protocol"],
["remark-lint-no-blockquote-without-marker"],
["remark-lint-no-literal-urls"],
["remark-lint-ordered-list-marker-style", "."],
["remark-lint-hard-break-spaces"],
["remark-lint-no-duplicate-definitions"],
["remark-lint-no-heading-content-indent"],
["remark-lint-no-inline-padding"],
["remark-lint-no-shortcut-reference-image"],
["remark-lint-no-shortcut-reference-link"],
["remark-lint-no-undefined-references"],
["remark-lint-no-unused-definitions"],
["remark-lint-file-extension", "md"],
["remark-lint-no-file-name-mixed-case"],
["remark-lint-no-file-name-articles"],
["remark-lint-no-file-name-irregular-characters"],
["remark-lint-no-file-name-consecutive-dashes"],
["remark-lint-no-file-name-outer-dashes"],
["remark-lint-no-consecutive-blank-lines"],
["remark-lint-maximum-line-length", 100],
["remark-lint-no-shell-dollars"],
["remark-lint-heading-style", "atx"],
["remark-lint-heading-increment"],
["remark-lint-no-duplicate-headings"],
["remark-lint-no-multiple-toplevel-headings"],
["remark-lint-maximum-heading-length"],
["remark-lint-no-heading-punctuation", ":."],
["remark-lint-blockquote-indentation", 2],
["remark-lint-unordered-list-marker-style", "-"],
["remark-lint-ordered-list-marker-value", "one"],
["remark-lint-list-item-content-indent"],
["remark-lint-list-item-spacing"],
["remark-lint-code-block-style", "fenced"],
["remark-lint-fenced-code-flag", {"allowEmpty": false}],
["remark-lint-fenced-code-marker", "`"],
["remark-lint-rule-style", "---"],
["remark-lint-no-table-indentation"],
["remark-lint-table-pipes"],
["remark-lint-table-pipe-alignment"],
["remark-lint-table-cell-padding", "padded"],
["remark-lint-final-definition"],
["remark-lint-definition-case"],
["remark-lint-definition-spacing"],
["remark-lint-link-title-style", "\""],
["remark-lint-strong-marker", "*"],
["remark-lint-emphasis-marker", "*"],
["remark-lint-no-emphasis-as-heading", "*"],
["remark-lint-no-dead-urls"],
["remark-validate-links"],
["remark-lint-no-url-trailing-slash"],
[
"remark-lint-write-good",
[
"warn",
{
"passive": false,
"so": true
}
]
]
]
}