-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.markdownlint.yml
More file actions
58 lines (42 loc) · 1.25 KB
/
.markdownlint.yml
File metadata and controls
58 lines (42 loc) · 1.25 KB
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
# https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml
# MD003 - Heading style
heading-style:
style: "atx"
# MD004 - Unordered list style
ul-style:
style: "dash"
# MD007 - Unordered list indentation
ul-indent:
indent: 2
# MD010 - Hard tabs
no-hard-tabs:
code_blocks: false # allow tabs in code blocks
# MD013 - Line length
line-length: false
# MD024 - Multiple headings with the same content
no-duplicate-heading:
siblings_only: true # allow same heading in different sections
# MD033 - Inline HTML
no-inline-html: false # allow HTML in markdown
# MD034 - Bare URL
no-bare-urls: false # common in technical docs
# MD036 - Emphasis used instead of a heading
no-emphasis-as-heading: false
# MD041 - First line in a file should be a top-level heading
first-line-heading: false # not all files start with headings
# MD047 - Files should end with a single newline character
single-trailing-newline: false # handled by editor settings
# MD046 - Code block style
code-block-style:
style: "fenced"
# MD048 - Code fence style
code-fence-style:
style: "backtick"
# MD049 - Emphasis style
emphasis-style:
style: "asterisk"
# MD050 - Strong style
strong-style:
style: "asterisk"
# MD060 - Table column style
table-column-style: false