forked from coder/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlint.jsonc
60 lines (49 loc) · 1.18 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
// Default state for all rules is true
"default": true,
// Enforces headings use leftward hashtags
"MD003": "atx",
// Enforces consistent delimiter used for list items
"MD004": {
"style": "dash"
},
"MD013": {
"code_blocks": false
},
// Enforces that the only punctuation that may appear at the end of a heading
// is a question mark (?)
"MD026": {
"punctuation": ".,;:!"
},
"MD029": {
"style": "one"
},
// Disables enforcement of HTML usage
"MD033": false,
// Enforces horizontal rules must be indicated with "---"
"MD035": "---",
// Enforces that after Jekyll front-matter, an h2 is used
"MD041": {
"level": 2
},
// Enforces correct spelling and capitalization of the names array
"MD044": {
"names": [
"Bitbucket",
"GitHub",
"GitLab",
"Google",
"Kubernetes",
"JavaScript",
"JSON",
"PostgreSQL",
"URL",
"URLs"
],
"code_blocks": false
},
// Enforces all code blocks appear within code fences
"MD046": "fenced",
// Enforces backticks are used to create code fences
"MD048": "backtick"
}