-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
.markdownlint.json
85 lines (85 loc) · 1.37 KB
/
.markdownlint.json
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
75
76
77
78
79
80
81
82
83
84
85
{
"code-block-style": {
"style": "fenced"
},
"code-fence-style": {
"style": "backtick"
},
"emphasis-style": {
"style": "asterisk"
},
"fenced-code-language": {
"allowed_languages": [
"ini",
"json",
"jsonc",
"markdown"
],
"language_only": true
},
"heading-style": {
"style": "atx"
},
"hr-style": {
"style": "---"
},
"line-length": false,
"link-image-style": {
"autolink": false,
"collapsed": false,
"shortcut": false,
"url_inline": false
},
"no-duplicate-heading": {
"siblings_only": true
},
"ol-prefix": {
"style": "ordered"
},
"proper-names": {
"code_blocks": false,
"names": [
"CommonMark",
"Ctrl",
"JavaScript",
"Markdown",
"markdown-it",
"markdownlint",
"Node.js",
"Shift",
"Visual Studio Code"
]
},
"required-headings": {
"headings": [
"# markdownlint",
"## Introduction",
"## Install",
"## Use",
"## Rules",
"## Commands",
"### Fix",
"### Workspace",
"### Disable",
"## Configure",
"### markdownlint.config",
"### markdownlint.focusMode",
"### markdownlint.run",
"### markdownlint.customRules",
"### markdownlint.lintWorkspaceGlobs",
"## Suppress",
"## Snippets",
"## Security",
"## History"
]
},
"strong-style": {
"style": "asterisk"
},
"table-pipe-style": {
"style": "leading_and_trailing"
},
"ul-style": {
"style": "asterisk"
}
}