-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
86 lines (86 loc) · 1.55 KB
/
.markdownlint.jsonc
File metadata and controls
86 lines (86 loc) · 1.55 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
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
86
{
"$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/main/schema/markdownlint-config-schema.json",
"default": true,
"MD003": {
"style": "atx",
},
"MD004": {
"style": "dash",
},
"MD007": {
"indent": 2,
},
"MD013": {
"line_length": 100,
"code_blocks": false,
"tables": false,
"headings": false,
"strict": false,
},
// MD024: Disabled to allow Keep a Changelog format in CHANGELOG.md
// which uses repeated section headings (Added, Changed, Fixed, Removed)
"MD024": false,
"MD029": {
"style": "ordered",
},
"MD033": {
"allowed_elements": [
"a",
"br",
"details",
"div",
"figcaption",
"figure",
"hostname",
"img",
"picture",
"source",
"strong",
"sub",
"summary",
"sup",
],
},
"MD035": {
"style": "---",
},
"MD040": {
"allowed_languages": [
"bash",
"c",
"cmake",
"cpp",
"csharp",
"diff",
"dockerfile",
"ebnf",
"ini",
"glsl",
"hcl",
"json",
"ldif",
"lua",
"markdown",
"mermaid",
"pgsql",
"powershell",
"python",
"rust",
"shell",
"sql",
"text",
"toml",
"typescript",
"wgsl",
"xml",
"yaml",
],
"language_only": false,
},
"MD046": {
"style": "fenced",
},
// MD060: Table column style - disabled because existing tables use mixed
// styles (some compact, some expanded). Tables are readable as-is.
"MD060": false,
}