forked from chai-mi/note
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.markdownlint.yaml
62 lines (45 loc) · 1.16 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
53
54
55
56
57
58
59
60
61
62
# 默认启用所有配置项
default: true
extends: null
# MD001 标题级别每次只能增加一级
heading-increment: false
# MD003 标题格式选取最简洁的 ATX 标题样式
heading-style:
style: "atx"
# MD004 无序列表前缀统一使用 -
ul-style:
style: "dash"
# MD007 嵌套列表缩进 2 空格
ul-indent:
indent: 2
# MD013 限制每行字符数
line-length: false
# MD022 标题应被空白行包围
blanks-around-headings: true
# MD024“兄弟”标题内容不可重复
no-duplicate-heading:
siblings_only: true
# MD025 同一文档中有多个顶级标题
single-title: false
# MD029 有序列表前缀编号依次递增
ol-prefix:
style: "ordered"
# MD032 列表应被空白行包围
blanks-around-lists: false
# MD033 允许使用 HTML 语法
no-inline-html: false
# MD035 水平分割线统一格式
hr-style:
style: "---"
# MD046 统一使用围栏式代码块
code-block-style:
style: "fenced"
# MD048 代码块围栏样式为 ```
code-fence-style:
style: "backtick"
# MD049 斜体样式为 *斜体*
emphasis-style:
style: "asterisk"
# MD050 粗体样式为 **粗体**
strong-style:
style: "asterisk"