-
Notifications
You must be signed in to change notification settings - Fork 6
/
.markdownlint.yml
47 lines (39 loc) · 1.35 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
---
# Enable default rules
default: true
# MD007 - Unordered list indentation
# Sets nested list indents to 4 spaces instead of the default of 2.
# Required by Python-Markdown used by mkdocs
MD007:
indent: 4
# MD010 - No hard tabs
# No hard tabs allowed in docs. Use 4 spaces instead.
# This is disabled inline when used.
MD010: true
# MD013 - Line length
# Defaults to 80 characters.
MD013: false
# MD014 - Dollar signs used before commands without showing output
# Ignores terminal examples using dollar signs without any output examples after.
# These occur in multiple places throughout our docs.
MD014: false
# MD024 - Multiple headings with the same content
# Multiple identical headings in the document are not allowed
# This is disabled on all of the release notes pages in docs/release-notes
MD024: true
# MD033 - Inline HTML
# Triggered when raw HTML is used in a markdown document
# Disabled inline when used.
MD033: true
# MD041 - First line in a file should be a top-level heading
# This requires a top-level heading as the first line in every doc.
MD041: true
# MD046 - Code blocks should be fenced for mkdocs
# unless you're using tabs which will require you to disable
# this check around that block like:
# <!-- markdownlint-capture -->
# <!-- markdownlint-disable MD046 -->
# all your tab stuff here
# <!-- markdownlint-restore -->
MD046:
style: fenced