1
- ---
2
-
3
1
# yamllint disable rule:line-length
2
+ ---
4
3
5
4
# Example markdownlint configuration with all properties set to their default value
6
5
@@ -21,12 +20,12 @@ MD002:
21
20
# MD003/heading-style/header-style - Heading style
22
21
MD003 :
23
22
# Heading style
24
- style : consistent
23
+ style : " consistent"
25
24
26
25
# MD004/ul-style - Unordered list style
27
26
MD004 :
28
27
# List style
29
- style : consistent
28
+ style : " consistent"
30
29
31
30
# MD005/list-indent - Inconsistent indentation for list items at the same level
32
31
MD005 : true
83
82
tables : true
84
83
# Include headings
85
84
headings : true
86
- # Include headings
87
- headers : true
88
85
# Strict length checking
89
86
strict : false
90
87
# Stern length checking
@@ -117,8 +114,6 @@ MD023: true
117
114
118
115
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
119
116
MD024 :
120
- # Only check sibling headings
121
- allow_different_nesting : false
122
117
# Only check sibling headings
123
118
siblings_only : false
124
119
@@ -127,12 +122,12 @@ MD025:
127
122
# Heading level
128
123
level : 1
129
124
# RegExp for matching title in front matter
130
- front_matter_title : ^\\s*title\\s*[:=]
125
+ front_matter_title : " ^\\ s*title\\ s*[:=]"
131
126
132
127
# MD026/no-trailing-punctuation - Trailing punctuation in heading
133
128
MD026 :
134
129
# Punctuation characters not allowed at end of headings
135
- punctuation : .,;:!。,;:!
130
+ punctuation : " .,;:!。,;:!"
136
131
137
132
# MD027/no-multiple-space-blockquote - Multiple spaces after blockquote symbol
138
133
MD027 : true
@@ -143,7 +138,7 @@ MD028: true
143
138
# MD029/ol-prefix - Ordered list item prefix
144
139
MD029 :
145
140
# List style
146
- style : one_or_ordered
141
+ style : " one_or_ordered"
147
142
148
143
# MD030/list-marker-space - Spaces after list markers
149
144
MD030 :
@@ -175,12 +170,12 @@ MD034: true
175
170
# MD035/hr-style - Horizontal rule style
176
171
MD035 :
177
172
# Horizontal rule style
178
- style : consistent
173
+ style : " consistent"
179
174
180
175
# MD036/no-emphasis-as-heading/no-emphasis-as-header - Emphasis used instead of a heading
181
176
MD036 :
182
177
# Punctuation characters
183
- punctuation : .,;:!?。,;:!?
178
+ punctuation : " .,;:!?。,;:!?"
184
179
185
180
# MD037/no-space-in-emphasis - Spaces inside emphasis markers
186
181
MD037 : true
@@ -203,17 +198,17 @@ MD041:
203
198
# Heading level
204
199
level : 1
205
200
# RegExp for matching title in front matter
206
- front_matter_title : ^\\s*title\\s*[:=]
201
+ front_matter_title : " ^\\ s*title\\ s*[:=]"
207
202
208
203
# MD042/no-empty-links - No empty links
209
204
MD042 : true
210
205
211
206
# MD043/required-headings/required-headers - Required heading structure
212
207
MD043 :
213
208
# List of headings
214
- headings : ["*"]
215
- # List of headings
216
- headers : [ ]
209
+ headings : [
210
+ " * "
211
+ ]
217
212
# Match case of headings
218
213
match_case : false
219
214
@@ -232,25 +227,25 @@ MD045: true
232
227
# MD046/code-block-style - Code block style
233
228
MD046 :
234
229
# Block style
235
- style : consistent
230
+ style : " consistent"
236
231
237
232
# MD047/single-trailing-newline - Files should end with a single newline character
238
233
MD047 : true
239
234
240
235
# MD048/code-fence-style - Code fence style
241
236
MD048 :
242
237
# Code fence style
243
- style : consistent
238
+ style : " consistent"
244
239
245
240
# MD049/emphasis-style - Emphasis style should be consistent
246
241
MD049 :
247
242
# Emphasis style should be consistent
248
- style : consistent
243
+ style : " consistent"
249
244
250
245
# MD050/strong-style - Strong style should be consistent
251
246
MD050 :
252
247
# Strong style should be consistent
253
- style : consistent
248
+ style : " consistent"
254
249
255
250
# MD051/link-fragments - Link fragments should be valid
256
251
MD051 : true
@@ -262,6 +257,6 @@ MD052: true
262
257
MD053 :
263
258
# Ignored definitions
264
259
ignored_definitions :
265
- - //
260
+ - " // "
266
261
267
262
# yamllint enable rule:line-length
0 commit comments