forked from novuhq/novu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.jsonc
43 lines (34 loc) · 1.04 KB
/
.markdownlint.jsonc
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
{
// MD013/line-length - Line length
"MD013": false,
// MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
"MD024": {
"siblings_only": true
},
// MD032/blanks-around-lists - Lists should be surrounded by blank lines
"MD032": false,
// MD033/no-inline-html - Inline HTML
"MD033": false,
// MD041/first-line-heading/first-line-h1 - First line in a file should be a top-level heading
"MD041": false,
// MD009/no-trailing-spaces - Trailing spaces
"MD009": false,
// MD025/single-title/single-h1 - Multiple top-level headings in the same document
"MD025": false,
// MD014/commands-show-output - Dollar signs used before commands without showing output
"MD014": false,
"MD013/line-length": false,
// MD044/proper-names - Proper names should have the correct capitalization
"MD044": {
"code_blocks": false,
"names": [
"Cake.Markdownlint",
"CommonMark",
"JavaScript",
"Markdown",
"markdown-it",
"markdownlint",
"Node.js"
]
}
}