Skip to content

Commit 3483134

Browse files
author
Gonzalo Diaz
committed
[CONFIG]: markdownlint config fixed.
1 parent c21b2bc commit 3483134

File tree

1 file changed

+17
-22
lines changed

1 file changed

+17
-22
lines changed

.markdownlint.yaml

Lines changed: 17 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
---
2-
31
# yamllint disable rule:line-length
2+
---
43

54
# Example markdownlint configuration with all properties set to their default value
65

@@ -21,12 +20,12 @@ MD002:
2120
# MD003/heading-style/header-style - Heading style
2221
MD003:
2322
# Heading style
24-
style: consistent
23+
style: "consistent"
2524

2625
# MD004/ul-style - Unordered list style
2726
MD004:
2827
# List style
29-
style: consistent
28+
style: "consistent"
3029

3130
# MD005/list-indent - Inconsistent indentation for list items at the same level
3231
MD005: true
@@ -83,8 +82,6 @@ MD013:
8382
tables: true
8483
# Include headings
8584
headings: true
86-
# Include headings
87-
headers: true
8885
# Strict length checking
8986
strict: false
9087
# Stern length checking
@@ -117,8 +114,6 @@ MD023: true
117114

118115
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
119116
MD024:
120-
# Only check sibling headings
121-
allow_different_nesting: false
122117
# Only check sibling headings
123118
siblings_only: false
124119

@@ -127,12 +122,12 @@ MD025:
127122
# Heading level
128123
level: 1
129124
# RegExp for matching title in front matter
130-
front_matter_title: ^\\s*title\\s*[:=]
125+
front_matter_title: "^\\s*title\\s*[:=]"
131126

132127
# MD026/no-trailing-punctuation - Trailing punctuation in heading
133128
MD026:
134129
# Punctuation characters not allowed at end of headings
135-
punctuation: .,;:!。,;:!
130+
punctuation: ".,;:!。,;:!"
136131

137132
# MD027/no-multiple-space-blockquote - Multiple spaces after blockquote symbol
138133
MD027: true
@@ -143,7 +138,7 @@ MD028: true
143138
# MD029/ol-prefix - Ordered list item prefix
144139
MD029:
145140
# List style
146-
style: one_or_ordered
141+
style: "one_or_ordered"
147142

148143
# MD030/list-marker-space - Spaces after list markers
149144
MD030:
@@ -175,12 +170,12 @@ MD034: true
175170
# MD035/hr-style - Horizontal rule style
176171
MD035:
177172
# Horizontal rule style
178-
style: consistent
173+
style: "consistent"
179174

180175
# MD036/no-emphasis-as-heading/no-emphasis-as-header - Emphasis used instead of a heading
181176
MD036:
182177
# Punctuation characters
183-
punctuation: .,;:!?。,;:!?
178+
punctuation: ".,;:!?。,;:!?"
184179

185180
# MD037/no-space-in-emphasis - Spaces inside emphasis markers
186181
MD037: true
@@ -203,17 +198,17 @@ MD041:
203198
# Heading level
204199
level: 1
205200
# RegExp for matching title in front matter
206-
front_matter_title: ^\\s*title\\s*[:=]
201+
front_matter_title: "^\\s*title\\s*[:=]"
207202

208203
# MD042/no-empty-links - No empty links
209204
MD042: true
210205

211206
# MD043/required-headings/required-headers - Required heading structure
212207
MD043:
213208
# List of headings
214-
headings: ["*"]
215-
# List of headings
216-
headers: []
209+
headings: [
210+
"*"
211+
]
217212
# Match case of headings
218213
match_case: false
219214

@@ -232,25 +227,25 @@ MD045: true
232227
# MD046/code-block-style - Code block style
233228
MD046:
234229
# Block style
235-
style: consistent
230+
style: "consistent"
236231

237232
# MD047/single-trailing-newline - Files should end with a single newline character
238233
MD047: true
239234

240235
# MD048/code-fence-style - Code fence style
241236
MD048:
242237
# Code fence style
243-
style: consistent
238+
style: "consistent"
244239

245240
# MD049/emphasis-style - Emphasis style should be consistent
246241
MD049:
247242
# Emphasis style should be consistent
248-
style: consistent
243+
style: "consistent"
249244

250245
# MD050/strong-style - Strong style should be consistent
251246
MD050:
252247
# Strong style should be consistent
253-
style: consistent
248+
style: "consistent"
254249

255250
# MD051/link-fragments - Link fragments should be valid
256251
MD051: true
@@ -262,6 +257,6 @@ MD052: true
262257
MD053:
263258
# Ignored definitions
264259
ignored_definitions:
265-
- //
260+
- "//"
266261

267262
# yamllint enable rule:line-length

0 commit comments

Comments
 (0)