forked from survivejs/maintenance-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.remarkrc
33 lines (33 loc) · 835 Bytes
/
.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
{
"plugins": {
"lint": {
"reset": true,
"code-block-style": "fenced",
"fenced-code-flag": [
"bash",
"css",
"diff",
"html",
"javascript",
"json",
"markdown",
"sass",
"yaml"
],
"file-extension": "md",
"heading-increment": true,
"no-duplicate-headings": true,
"no-file-name-articles": true,
"no-file-name-consecutive-dashes": true,
"no-file-name-irregular-characters": true,
"no-file-name-mixed-case": true,
"no-file-name-outer-dashes": true,
"no-heading-punctuation": ".,;:!?",
"no-shell-dollars": true,
"no-shortcut-reference-image": true,
"no-shortcut-reference-link": true,
"no-undefined-references": true,
"no-unused-definitions": true
}
}
}