forked from Libera-Chat/libera-chat.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.yml
71 lines (60 loc) · 1.41 KB
/
.markdownlint.yml
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
default: true
# MD003/heading-style/header-style - Heading style
MD003:
# Heading style
style: atx
# MD004/ul-style - Unordered list style
MD004:
# List style
style: dash
# MD009/no-trailing-spaces - Trailing spaces
MD009:
# Spaces for line break
br_spaces: 0
# Allow spaces for empty lines in list items
list_item_empty_lines: false
# Include unnecessary breaks
strict: false
# MD013/line-length - Line length
MD013:
line_length: 78
code_blocks: false
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
MD024:
# Only check sibling headings
siblings_only: false
# MD033/no-inline-html - Inline HTML
MD033:
# Allowed elements
allowed_elements:
- sup
- sub
- br
- kbd
# MD035/hr-style - Horizontal rule style
MD035:
# Horizontal rule style
style: "---"
# MD042/no-empty-links - No empty links
# This is checked by check-md instead
MD042: false
# MD044/proper-names - Proper names should have the correct capitalization
MD044:
# List of proper names
# Add our domains so they don't count for capitalization
names:
- Libera.Chat
- Libera Chat
- irc.libera.chat
- irc.eu.libera.chat
- irc.us.libera.chat
# Include code blocks
code_blocks: false
# MD046/code-block-style - Code block style
MD046:
# Block style
style: fenced
# MD048/code-fence-style - Code fence style
MD048:
# Code fence syle
style: backtick