-
Notifications
You must be signed in to change notification settings - Fork 9
/
.markdownlint.yaml
57 lines (46 loc) · 1.12 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Default state for all rules
default: true
# Path to configuration file to extend
extends:
# MD002/first-heading-h1/first-header-h1 - First heading should be a top-level heading
MD002: false
# MD003/heading-style/header-style - Heading style
MD003:
style: atx
# MD004/ul-style - Unordered list style
MD004:
style: dash
# MD013/line-length - Line length
MD013:
# Number of characters
line_length: 120
# Number of characters for headings
heading_line_length: 120
# Exclude code blocks
code_blocks: false
# Exclude tables
tables: false
# MD024/headings/headers - Multiple headings with the same content
MD024:
# Heading duplication is allowed for non-sibling headings
siblings_only: true
# MD035/hr-style - Horizontal rule style
MD035:
# Horizontal rule style
style: '---'
# MD046/code-block-style - Code block style
MD046:
# Block style
style: fenced
# MD048/code-fence-style - Code fence style
MD048:
# Code fence style
style: backtick
# MD049/emphasis-style - Emphasis style
MD049:
# Emphasis style
style: underscore
# MD050/strong-style - Strong style
MD050:
# Strong style
style: asterisk