-
Notifications
You must be signed in to change notification settings - Fork 12
/
.markdownlint.yaml
43 lines (33 loc) · 1.08 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
---
# Default markdownlint.yaml:
# https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml
# Rule explanation:
# https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
# Enable all rules by default
default: false
# Disable deprecated rules
MD002: false
MD006: false
# Disable unwanted rules
MD043: false
# Rules for which we are overriding the default values
MD003:
# ATX style headers are the "#" or "##" at the start of a line
style: "atx"
MD013:
# 120 characters should be readable in the vast majority of terminals
line_length: 1120
code_block_line_length: 1120
stern: true
MD035:
style: "---"
MD046:
# Using fenced (```) for code blocks more clearly delineates the code from
# the surrounding text. It is also easier to maintain and copy/paste
style: "fenced"
MD048:
# While other characters may be able to be used to fence a code block, the
# being consistent across the entire repository make is preferable and it is
# unlikely that backticks will ever cause an issue compared to other allowed
# fences.
style: "backtick"