-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy path.markdownlint.yml
More file actions
81 lines (61 loc) · 1.94 KB
/
.markdownlint.yml
File metadata and controls
81 lines (61 loc) · 1.94 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Markdownlint configuration
# See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
# Default state for all rules
default: true
# MD003/heading-style - Heading style
MD003:
style: atx
# MD004/ul-style - Unordered list style (allow both asterisk and dash)
MD004: false
# MD007/ul-indent - Unordered list indentation (disabled for flexibility)
MD007: false
# MD013/line-length - Line length (disabled for documentation with long URLs)
MD013: false
# MD024/no-duplicate-heading - Multiple headings with the same content
MD024: false
# MD025/single-title/single-h1 - Multiple top-level headings in the same document
MD025:
front_matter_title: ""
# MD030/list-marker-space - Spaces after list markers (allow both 1 and 2 spaces)
MD030: false
# MD033/no-inline-html - Inline HTML (allow Adobe doc components)
MD033:
allowed_elements:
- HeroSimple
- Resources
- DiscoverBlock
- InlineAlert
- Edition
- SuperHero
- CodeBlock
- Fragment
- Cards
- HorizontalLine
# MD034/no-bare-urls - Bare URL used
MD034: false
# MD041/first-line-heading/first-line-h1 - First line in file should be a top level heading
MD041: false
# MD045/no-alt-text - Images should have alternate text
MD045: false
# MD046/code-block-style - Code block style
MD046:
style: fenced
# MD048/code-fence-style - Code fence style
MD048:
style: backtick
# MD049/emphasis-style - Emphasis style (allow both)
MD049: false
# MD050/strong-style - Strong style
MD050:
style: asterisk
# MD052/reference-links-images - Reference links and images should have a title attribute (disabled for flexibility)
MD052: false
# MD054/link-image-style - Link and image style (disabled for flexibility)
MD054:
autolink: false
url_inline: false
# MD055/table-pipe-style - Require leading and trailing pipes (matches AM023)
MD055:
style: leading_and_trailing
# MD060/table-column-style - Table column style (disabled for flexible formatting)
MD060: false