-
Notifications
You must be signed in to change notification settings - Fork 2
/
.remarkrc.js
31 lines (30 loc) · 951 Bytes
/
.remarkrc.js
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
module.exports = {
"settings": {
bullet: "*",
listItemIndent: "one",
fences: true,
},
"plugins": {
"remark-preset-lint-recommended": true,
"remark-lint-final-newline": true,
"remark-lint-list-item-indent": "space",
"remark-lint-list-item-bullet-indent": true,
"remark-lint-no-shortcut-reference-link": true,
"remark-lint-hard-break-spaces": true,
"remark-lint-no-blockquote-without-marker": true,
"remark-lint-no-undefined-references": {
allow: ['toc']
},
// plugins other than recommended
"remark-gfm": true,
"remark-validate-links": ["error"],
"remark-frontmatter": true,
"remark-lint-table-pipes" : true,
"remark-emoji": true,
"remark-reference-links": true,
"remark-lint-no-unneeded-full-reference-link": true,
"remark-lint-no-unneeded-full-reference-image": true,
"remark-lint-double-link": true,
"remark-lint-final-definition": true,
}
};