-
Notifications
You must be signed in to change notification settings - Fork 13
/
.markdownlint-cli2.yaml
110 lines (91 loc) · 2.93 KB
/
.markdownlint-cli2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#
# Configuration file for MarkdownLint-CLI2.
#
# Example file with all options:
# https://github.com/DavidAnson/markdownlint-cli2/blob/main/test/markdownlint-cli2-yaml-example/.markdownlint-cli2.yaml
#
# Do not fix any fixable errors.
fix: false
# Define glob expressions to use (only valid at root).
globs:
- "**/*.md"
- ".github/**/*.md"
# Define glob expressions to ignore.
ignores:
- "node_modules/"
- "vendor/"
# Show found files on stdout (only valid at root)
showFound: true
# Disable inline config comments.
noInlineConfig: true
# Disable progress on stdout (only valid at root).
noProgress: false
# Adjust the configuration for some built-in rules.
# For full information on the options and defaults, see:
# https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml
config:
######################
# Disable a few rules.
######################
# MD003/heading-style/header-style - Heading style.
MD003: false
# MD031/blanks-around-fences - Fenced code blocks should be surrounded by blank lines.
MD031: false
# MD032/blanks-around-lists - Lists should be surrounded by blank lines.
MD032: false
##############################
# Customize a few other rules.
##############################
# MD004/ul-style - Unordered list style.
MD004:
# List style - each level has a different, but consistent symbol.
style: "sublist"
# MD007/ul-indent - Unordered list indentation.
MD007:
indent: 4
# Whether to indent the first level of the list.
start_indented: false
# MD012/no-multiple-blanks - Multiple consecutive blank lines.
MD012:
maximum: 2
# MD013/line-length - Line length.
MD013:
# Number of characters. No need for being too fussy.
line_length: 1000
# Number of characters for headings.
heading_line_length: 105
# Number of characters for code blocks.
code_block_line_length: 100
# Stern length checking (applies to tables, code blocks etc which have their own max line length).
stern: true
# MD022/blanks-around-headings/blanks-around-headers - Headings should be surrounded by blank lines
MD022:
# Blank lines below heading
lines_below: false
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content.
MD024:
# Only check sibling headings.
siblings_only: true
# MD033/no-inline-html - Inline HTML.
MD033:
# Allowed elements.
allowed_elements:
- br
# MD044/proper-names - Proper names should have the correct capitalization.
MD044:
# List of proper names.
names: ["PHPUnit"]
# Include code blocks.
code_blocks: false
# MD046/code-block-style - Code block style
MD046:
style: "fenced"
# MD048/code-fence-style - Code fence style
MD048:
style: "backtick"
# MD049/emphasis-style - Emphasis style should be consistent
MD049:
style: "underscore"
# MD050/strong-style - Strong style should be consistent
MD050:
style: "asterisk"