-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy path.markdownlint.yml
More file actions
31 lines (30 loc) · 950 Bytes
/
.markdownlint.yml
File metadata and controls
31 lines (30 loc) · 950 Bytes
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
ignores:
- .github/**
default: true
# disable noisy rules
# 0004 Unordered List style
# Force dash style for unordered lists
MD004:
style: "dash"
# 013 Line length
# Disabled because we have a lot of long lines. We should fix this eventually.
MD013: false
# 033 Inline HTML
# Disabled because we use inline HTML (<br/> in table cells for example)
MD033: false
# MD040/fenced-code-language : Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/md040.md
MD040: false
# 041 First line in file should be a top level header
# Disabled because we use `include-markdown` plugin for merging markdown files
MD041: false
# 046 Code block style
# Disabled because mkdocs-material uses indented blocks for admonitions
MD046: false
# 049 emphasis style
# Force asterisk style for emphasis
MD049:
style: "asterisk"
# 050 strong style
# Force asterisk style for strong
MD050:
style: "asterisk"