forked from exercism/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.yaml
52 lines (42 loc) · 1.46 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
# Example markdownlint YAML configuration with all properties set to their default value
# See here: https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#rules
# Default state for all rules
default: false
# Path to configuration file to extend
extends: null
# MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time
MD001: true
# MD002/first-heading-h1/first-header-h1 - First heading should be a top-level heading
MD002:
# Heading level
level: 1
# MD003/heading-style/header-style - Heading style
MD003:
# Heading style
style: "atx"
MD009: true
# no reversed links
MD011: true
# MD012/no-multiple-blanks https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md012
MD012: true
MD013: false
# MD014/commands-show-output - Dollar signs used before commands without showing output
MD014: false
# MD031/blanks-around-fences https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md#md031---fenced-code-blocks-should-be-surrounded-by-blank-lines
MD031: true
# MD033/no-inline-html - Inline HTML
MD033:
# Allowed elements
allowed_elements: []
# MD034/no-bare-urls - Bare URL used
MD034: true
# MD039/no-space-in-links - Spaces inside link text
MD039: true
# MD040/fenced-code-language - Fenced code blocks should have a language specified
MD040: true
# MD042/no-empty-links - No empty links
MD042: true
# MD048/code-fence-style - Code fence style
MD048:
# Code fence syle
style: "backtick"