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
2
+
3
+
# Default state for all rules
4
+
default: true
5
+
6
+
# Path to configuration file to extend
7
+
extends: null
8
+
9
+
# MD001/heading-increment : Heading levels should only increment by one level at a time : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md001.md
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md013.md
61
+
MD013: false
62
+
# # Number of characters
63
+
# line_length: 200
64
+
# # Number of characters for headings
65
+
# heading_line_length: 80
66
+
# # Number of characters for code blocks
67
+
# code_block_line_length: 200
68
+
# # Include code blocks
69
+
# code_blocks: true
70
+
# # Include tables
71
+
# tables: true
72
+
# # Include headings
73
+
# headings: true
74
+
# # Strict length checking
75
+
# strict: false
76
+
# # Stern length checking
77
+
# stern: false
78
+
79
+
# MD014/commands-show-output : Dollar signs used before commands without showing output : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md014.md
80
+
MD014: true
81
+
82
+
# MD018/no-missing-space-atx : No space after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md018.md
83
+
MD018: true
84
+
85
+
# MD019/no-multiple-space-atx : Multiple spaces after hash on atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md019.md
86
+
MD019: true
87
+
88
+
# MD020/no-missing-space-closed-atx : No space inside hashes on closed atx style heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md020.md
# MD022/blanks-around-headings : Headings should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md022.md
95
+
MD022:
96
+
# Blank lines above heading
97
+
lines_above: 1
98
+
# Blank lines below heading
99
+
lines_below: 1
100
+
101
+
# MD023/heading-start-left : Headings must start at the beginning of the line : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md023.md
102
+
MD023: true
103
+
104
+
# MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md024.md
105
+
MD024:
106
+
# Only check sibling headings
107
+
siblings_only: true
108
+
109
+
# MD025/single-title/single-h1 : Multiple top-level headings in the same document : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md025.md
110
+
MD025:
111
+
# Heading level
112
+
level: 1
113
+
# RegExp for matching title in front matter
114
+
front_matter_title: "^\\s*title\\s*[:=]"
115
+
116
+
# MD026/no-trailing-punctuation : Trailing punctuation in heading : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md026.md
117
+
MD026:
118
+
# Punctuation characters
119
+
punctuation: ".,;:!。,;:!"
120
+
121
+
# MD027/no-multiple-space-blockquote : Multiple spaces after blockquote symbol : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md027.md
122
+
MD027: true
123
+
124
+
# MD028/no-blanks-blockquote : Blank line inside blockquote : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md028.md
125
+
MD028: true
126
+
127
+
# MD029/ol-prefix : Ordered list item prefix : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md029.md
128
+
MD029:
129
+
# List style
130
+
style: "one_or_ordered"
131
+
132
+
# MD030/list-marker-space : Spaces after list markers : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md030.md
133
+
MD030:
134
+
# Spaces for single-line unordered list items
135
+
ul_single: 1
136
+
# Spaces for single-line ordered list items
137
+
ol_single: 1
138
+
# Spaces for multi-line unordered list items
139
+
ul_multi: 1
140
+
# Spaces for multi-line ordered list items
141
+
ol_multi: 1
142
+
143
+
# MD031/blanks-around-fences : Fenced code blocks should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md031.md
144
+
MD031:
145
+
# Include list items
146
+
list_items: true
147
+
148
+
# MD032/blanks-around-lists : Lists should be surrounded by blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md032.md
149
+
MD032: true
150
+
151
+
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md033.md
152
+
MD033: false
153
+
# # Allowed elements
154
+
# allowed_elements: []
155
+
156
+
# MD034/no-bare-urls : Bare URL used : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md034.md
# MD038/no-space-in-code : Spaces inside code span elements : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md038.md
173
+
MD038: true
174
+
175
+
# MD039/no-space-in-links : Spaces inside link text : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md039.md
176
+
MD039: true
177
+
178
+
# MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md040.md
179
+
MD040:
180
+
# List of languages
181
+
allowed_languages: []
182
+
# Require language only
183
+
language_only: false
184
+
185
+
# 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.36.1/doc/md041.md
186
+
MD041:
187
+
# Heading level
188
+
level: 1
189
+
# RegExp for matching title in front matter
190
+
front_matter_title: "^\\s*title\\s*[:=]"
191
+
192
+
# MD042/no-empty-links : No empty links : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md042.md
# MD047/single-trailing-newline : Files should end with a single newline character : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md047.md
# MD051/link-fragments : Link fragments should be valid : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md051.md
238
+
MD051:
239
+
# Ignore case of fragments
240
+
ignore_case: false
241
+
242
+
# MD052/reference-links-images : Reference links and images should use a label that is defined : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md052.md
243
+
MD052:
244
+
# Include shortcut syntax
245
+
shortcut_syntax: false
246
+
247
+
# MD053/link-image-reference-definitions : Link and image reference definitions should be needed : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md053.md
248
+
MD053:
249
+
# Ignored definitions
250
+
ignored_definitions:
251
+
- "//"
252
+
253
+
# MD054/link-image-style : Link and image style : https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/md054.md
Copy file name to clipboardExpand all lines: Code-of-Conduct.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Project maintainers have the right and responsibility to remove, edit, or reject
30
30
31
31
## Scope
32
32
33
-
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
33
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
0 commit comments