-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlint.yaml
66 lines (45 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
58
59
60
61
62
63
64
65
66
---
# https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
default: true
# Heading levels should only increment by on level at a time
MD001: true
# Consider starting bulleted lists at the beginning of the line
MD006: true
# Unordered list indentation
MD007: true
# Trailing spaces
MD009: false
# Multiple consecutive blank lines
MD012: true
# Line length
MD013: false
# Heading should be surrounded by blank lines
MD022: true
# Multiple headings with the same content
MD024: true
# Multiple top level headings in the same document
MD025: true
# Trailing punctuation in heading
MD026: true
# Fenced code blocks should be surrounded by blank lines
MD031: true
# Lists should be surrounded by blank lines
MD032: true
# Inline html
MD033: false
# Bare URL used
MD034: true
# Spaces inside emphasis markers
MD037: true
# Spaces inside code span elements
MD038: true
# Fenced code blocks should have a language specified
MD040: true
# First line in file should be a top level heading
MD041: false
# Required heading structure
MD043: true
# Code block style
MD046: false
# Files should end with a single newline
MD047: true