-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.yml
More file actions
33 lines (28 loc) · 1.37 KB
/
.markdownlint.yml
File metadata and controls
33 lines (28 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
default: true
# Allow multiple blank lines
#
# Reason: Sometimes multiple blank lines improve readability, e.g., between sections, or for adding HTML comments to Markdown. ADR templates have this. Also, certain pre-commit hooks add an extra line at the end of a file.
#
# Details: https://github.com/DavidAnson/markdownlint/blob/main/doc/md012.md#md012---multiple-consecutive-blank-lines
MD012: false
# Allow arbitrary line length
#
# Reason: We apply the one-sentence-per-line rule. A sentence may get longer than 80 characters, especially if links are contained.
#
# Details: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md013---line-length
MD013: false
# Allow duplicate headings
#
# Reasons:
#
# - The chosen option is considerably often used as title of the ADR. Thus, that title repeats.
# - Markdown lint should support the user and not annoy them.
#
# Details: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md024---multiple-headings-with-the-same-content
MD024: false
# Allow misaligned table pipes
#
# Reason: It is more readable to align the pipes in tables, but it is a lot of work to maintain that alignment. Markdown lint should support the user and not annoy them.
# Note: Should it be set to a different setting than `aligned`?
# Details: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md060---table-column-style
MD060: false