forked from dotnet/performance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
46 lines (32 loc) · 1.27 KB
/
.markdownlint.jsonc
File metadata and controls
46 lines (32 loc) · 1.27 KB
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
{
// MD001/heading-increment : Heading levels should only increment by one level at a time
"MD001": true,
// MD004/ul-style : Unordered list style
"MD004": false,
// MD012/no-multiple-blanks : Multiple consecutive blank lines
"MD012": true,
// MD013/line-length : Line length
"MD013": false,
// MD024/no-duplicate-heading : Multiple headings with the same content
"MD024": false,
// MD029/ol-prefix : Ordered list item prefix
"MD029": false,
// MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines
"MD031": true,
// MD033/no-inline-html : Inline HTML
"MD033": true,
// MD034/no-bare-urls : Bare URL used
"MD034": false,
// MD036/no-emphasis-as-heading : Emphasis used instead of a heading
"MD036": true,
// MD047/single-trailing-newline : Files should end with a single newline character
"MD047": true,
// MD051/link-fragments : Link fragments should be valid
"MD051": true,
// MD052/reference-links-images : Reference links and images should use a label that is defined
"MD052": true,
// MD059/descriptive-link-text : Link text should be descriptive
"MD059": true,
// MD060/table-column-style : Table column style
"MD060": false
}