-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint-cli2.yaml
More file actions
45 lines (36 loc) · 884 Bytes
/
.markdownlint-cli2.yaml
File metadata and controls
45 lines (36 loc) · 884 Bytes
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
---
config:
# Default state for all rules
default: true
# MD013/line-length - Line length
MD013: false
# MD024/no-duplicate-heading - Multiple headings with the same content
MD024:
# Allow different nesting levels
allow_different_nesting: true
# MD029/ol-prefix - Ordered list item prefix
MD029: false
# MD033/no-inline-html - Inline HTML
MD033:
# Allow specific HTML elements
allowed_elements:
- a
- br
- details
- em
- hr
- img
- summary
- sup
# MD040/fenced-code-language - Fenced code blocks should have a language specified
MD040: false
# MD041/first-line-heading - First line in a file should be a heading
MD041: false
# MD046/code-block-style - Code block style
MD046:
style: fenced
# MD048/code-fence-style - Code fence style
MD048:
style: backtick
ignores:
- "CHANGELOG.md"