forked from AdobeDocs/commerce-webapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.yml
More file actions
92 lines (70 loc) · 2.1 KB
/
Copy path.markdownlint.yml
File metadata and controls
92 lines (70 loc) · 2.1 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
82
83
84
85
86
87
88
89
90
91
92
# Markdownlint configuration
# See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
# Default state for all rules
default: true
# MD001/heading-increment - replaced by CM001 (component-aware version)
MD001: false
# CM001/comdox-heading-increment - component-aware replacement for MD001
CM001: 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:
- Announcement
- Cards
- CodeBlock
- Details
- DiscoverBlock
- Edition
- Fragment
- GetCredential
- HeroSimple
- HorizontalLine
- InlineAlert
- RedoclyAPIBlock
- Resources
- SuperHero
- iframe
# MD034/no-bare-urls - Bare URL used
MD034: false
# MD035/hr-style - Horizontal rule style
MD035:
style: "---"
# 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
# MD051/link-fragments - Link fragments should be valid
MD051:
ignored_pattern: '^aio-api-mesh'
# 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