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
Copy file name to clipboardExpand all lines: .github/linters/.markdown-lint.yml
+24-27Lines changed: 24 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,4 @@
1
+
---
1
2
# Example markdownlint configuration with all properties set to their default value
2
3
3
4
# Default state for all rules
@@ -9,17 +10,17 @@ extends: null
9
10
# MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md001.md
# MD004/ul-style : Unordered list style : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md004.md
20
21
MD004:
21
22
# List style
22
-
style: "consistent"
23
+
style: consistent
23
24
24
25
# MD005/list-indent : Inconsistent indentation for list items at the same level : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md005.md
25
26
MD005: true
@@ -62,11 +63,11 @@ MD012: false
62
63
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md013.md
63
64
MD013:
64
65
# Number of characters
65
-
line_length: 80
66
+
line_length: 10000
66
67
# Number of characters for headings
67
-
heading_line_length: 80
68
+
heading_line_length: 105
68
69
# Number of characters for code blocks
69
-
code_block_line_length: 80
70
+
code_block_line_length: 105
70
71
# Include code blocks
71
72
code_blocks: true
72
73
# Include tables
@@ -111,7 +112,7 @@ MD024:
111
112
# MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md025.md
112
113
MD025:
113
114
# RegExp for matching title in front matter
114
-
front_matter_title: "^\\s*title\\s*[:=]"
115
+
front_matter_title: ^\\s*title\\s*[:=]
115
116
# Heading level
116
117
level: 1
117
118
@@ -131,7 +132,7 @@ MD028: true
131
132
# MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md029.md
132
133
MD029:
133
134
# List style
134
-
style: "one_or_ordered"
135
+
style: one_or_ordered
135
136
136
137
# MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md030.md
# MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md047.md
# MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md051.md
246
243
MD051:
@@ -253,15 +250,15 @@ MD051:
253
250
MD052:
254
251
# Ignored link labels
255
252
ignored_labels:
256
-
- "x"
253
+
- x
257
254
# Include shortcut syntax
258
255
shortcut_syntax: false
259
256
260
257
# MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md053.md
261
258
MD053:
262
259
# Ignored definitions
263
260
ignored_definitions:
264
-
- "//"
261
+
- //
265
262
266
263
# MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.39.0/doc/md054.md
0 commit comments