-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.jsonc
122 lines (122 loc) · 3.35 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
// v0.36.1
// https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/Rules.md
// "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.36.1/schema/markdownlint-config-schema.json",
"heading-increment": true /* MD001 */,
"heading-style": {
"style": "atx",
} /* MD003 */,
"ul-style": false /* MD004 */,
"list-indent": true /* MD005 */,
"ul-indent": {
"indent": 2,
"start_indent": 2,
"start_indented": false,
} /* MD007 */,
"no-trailing-spaces": {
"br_spaces": 0,
"list_item_empty_lines": false,
"strict": true,
} /* MD009 */,
"no-hard-tabs": {
"spaces_per_tab": 2,
"code_blocks": true,
"ignore_code_languages": [],
} /* MD010 */,
"no-reversed-links": false /* MD011 */,
"no-multiple-blanks": {
"maximum": 1,
} /* MD012 */,
"line-length": false /* MD013 */,
"commands-show-output": true /* MD014 */,
"no-missing-space-atx": true /* MD018 */,
"no-multiple-space-atx": true /* MD019 */,
"no-missing-space-closed-atx": true /* MD020 */,
"no-multiple-space-closed-atx": true /* MD021 */,
"blanks-around-headings": {
"lines_above": 1,
"lines_below": 0,
} /* MD022 */,
"heading-start-left": true /* MD023 */,
"no-duplicate-heading": {
"siblings_only": true,
} /* MD024 */,
"single-title": false /* MD025, single-h1 */,
"no-trailing-punctuation": {
"punctuation": "" /* @DEFAULT: .,;:!。,;:! */,
} /* MD026 */,
"no-multiple-space-blockquote": true /* MD027 */,
"no-blanks-blockquote": true /* MD028 */,
"ol-prefix": {
"style": "one_or_ordered",
} /* MD029 */,
"list-marker-space": {
"ol_multi": 1,
"ol_single": 1,
"ul_multi": 1,
"ul_single": 1,
} /* MD030 */,
"blanks-around-fences": {
"list_items": false,
} /* MD031 */,
"blanks-around-lists": true /* MD032 */,
"no-inline-html": {
"allowed_elements": [
"br",
"details",
"summary",
],
} /* MD033 */,
"no-bare-urls": true /* MD034 */,
"hr-style": {
"style": "---",
} /* MD035 */,
"no-emphasis-as-heading": false /* MD036 */,
"no-space-in-emphasis": true /* MD037 */,
"no-space-in-code": true /* MD038 */,
"no-space-in-links": true /* MD039 */,
"fenced-code-language": {
"allowed_languages": [],
"language_only": false,
} /* MD040 */,
"first-line-heading": false /* MD041, first-line-h1 */,
"no-empty-links": true /* MD042 */,
"required-headings": false /* MD043 */,
"proper-names": false /* MD044 */,
"no-alt-text": true /* MD045 */,
"code-block-style": {
"style": "fenced",
} /* MD046 */,
"single-trailing-newline": true /* MD047 */,
"code-fence-style": {
"style": "backtick",
} /* MD048 */,
"emphasis-style": {
"style": "underscore",
} /* MD049 */,
"strong-style": {
"style": "underscore",
} /* MD050 */,
"link-fragments": true /* MD051 */,
"reference-links-images": {
"shortcut_syntax": false,
} /* MD052 */,
"link-image-reference-definitions": {
"ignored_definitions": [
"//",
] /* @DEFAULT: ["//"] */,
} /* MD053 */,
"link-image-style": {
"autolink": true,
"collapsed": true,
"full": true,
"inline": true,
"shortcut": true,
"url_inline": true,
} /* MD054 */,
"table-pipe-style": {
"style": "leading_and_trailing",
} /* MD055 */,
"table-column-count": true /* MD056 */,
"blanks-around-tables": false /* MD058 */,
}