You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Example markdownlint configuration with all properties set to their default value
7
+
8
+
# Default state for all rules
9
+
default: true
10
+
11
+
# Path to configuration file to extend
12
+
extends: null
13
+
14
+
# MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md001.md
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md
66
+
MD013:
67
+
# Number of characters
68
+
line_length: 2000
69
+
# Number of characters for headings
70
+
heading_line_length: 2000
71
+
# Number of characters for code blocks
72
+
code_block_line_length: 2000
73
+
# Include code blocks
74
+
code_blocks: true
75
+
# Include tables
76
+
tables: false
77
+
# Include headings
78
+
headings: true
79
+
# Strict length checking
80
+
strict: false
81
+
# Stern length checking
82
+
stern: false
83
+
84
+
# MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md014.md
85
+
MD014: true
86
+
87
+
# MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md018.md
88
+
MD018: true
89
+
90
+
# MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md019.md
91
+
MD019: true
92
+
93
+
# MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md020.md
# MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md022.md
100
+
MD022:
101
+
# Blank lines above heading
102
+
lines_above: 1
103
+
# Blank lines below heading
104
+
lines_below: 1
105
+
106
+
# MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md023.md
107
+
MD023: true
108
+
109
+
# MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md024.md
110
+
MD024:
111
+
# Only check sibling headings
112
+
allow_different_nesting: false
113
+
# Only check sibling headings
114
+
siblings_only: false
115
+
116
+
# MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md025.md
117
+
MD025:
118
+
# Heading level
119
+
level: 1
120
+
# RegExp for matching title in front matter
121
+
front_matter_title: "^\\s*title\\s*[:=]"
122
+
123
+
# MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md026.md
124
+
MD026:
125
+
# Punctuation characters
126
+
punctuation: ".,;:!。,;:!"
127
+
128
+
# MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md027.md
129
+
MD027: true
130
+
131
+
# MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md028.md
132
+
MD028: true
133
+
134
+
# MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md029.md
135
+
MD029:
136
+
# List style
137
+
style: "one_or_ordered"
138
+
139
+
# MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md030.md
140
+
MD030:
141
+
# Spaces for single-line unordered list items
142
+
ul_single: 1
143
+
# Spaces for single-line ordered list items
144
+
ol_single: 1
145
+
# Spaces for multi-line unordered list items
146
+
ul_multi: 1
147
+
# Spaces for multi-line ordered list items
148
+
ol_multi: 1
149
+
150
+
# MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md031.md
151
+
MD031:
152
+
# Include list items
153
+
list_items: true
154
+
155
+
# MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md032.md
156
+
MD032: true
157
+
158
+
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md033.md
159
+
MD033:
160
+
# Allowed elements
161
+
allowed_elements: [table, tr, td, img, em,br, a]
162
+
163
+
# MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md034.md
# MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md038.md
180
+
MD038: true
181
+
182
+
# MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md039.md
183
+
MD039: true
184
+
185
+
# MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md040.md
186
+
MD040:
187
+
# List of languages
188
+
allowed_languages: []
189
+
# Require language only
190
+
language_only: false
191
+
192
+
# MD041/first-line-heading/first-line-h1 : First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md041.md
193
+
MD041:
194
+
# Heading level
195
+
level: 1
196
+
# RegExp for matching title in front matter
197
+
front_matter_title: "^\\s*title\\s*[:=]"
198
+
199
+
# MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md042.md
# MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md047.md
# MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md051.md
241
+
MD051: true
242
+
243
+
# MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md052.md
244
+
MD052:
245
+
# Include shortcut syntax
246
+
shortcut_syntax: false
247
+
248
+
# MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md053.md
249
+
MD053:
250
+
# Ignored definitions
251
+
ignored_definitions:
252
+
- "//"
253
+
254
+
# MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md054.md
0 commit comments