-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.markdownlint-cli2.yaml
More file actions
45 lines (37 loc) · 989 Bytes
/
Copy path.markdownlint-cli2.yaml
File metadata and controls
45 lines (37 loc) · 989 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
# Markdownlint-cli2 configuration
# See https://github.com/DavidAnson/markdownlint-cli2
# Markdownlint configuration
config:
# Default state for all rules
default: true
# MD001/heading-increment - Heading levels should only increment by one level at a time
MD001: false
# MD024/no-duplicate-heading - Multiple headings with the same content
MD024:
siblings_only: true
# MD007/ul-indent - Unordered list indentation
MD007:
indent: 4
# MD013/line-length - Line length
MD013:
line_length: 120
heading_line_length: 120
code_block_line_length: 120
code_blocks: false
tables: false
headings: true
strict: false
stern: false
# MD033/no-inline-html - Inline HTML
MD033:
allowed_elements:
- br
- details
- summary
- img
- a
- sup
# MD041/first-line-heading - First line in file should be a top level heading
MD041: false
# MD046/code-block-style - Code block style
MD046: false