forked from oVirt/ovirt-system-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlint.yaml
41 lines (35 loc) · 897 Bytes
/
.markdownlint.yaml
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
---
default: true
# default indent = 4 spaces
MD007:
indent: 2
# MD013/line-length - Line length
MD013:
# Number of characters
line_length: 149
# Number of characters for headings
heading_line_length: 119
# Number of characters for code blocks
code_block_line_length: 199
# Include code blocks
code_blocks: true
# Ignore table length violations
tables: false
# Include headings
headings: true
# Include headings
headers: true
# Strict length checking
strict: false
# Stern length checking
stern: false
MD024:
# Allow heading duplication if under different parent headings
siblings_only: true
# mkdocs allows ordered lists with its own style
MD029: false
# Our documentation uses sections with prerequisite/procedure pairs
# that will end up with having duplicate headers sections.
MD036: false
# mkdocs uses indentation for notes block
MD046: false