-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.markdownlint-cli2.jsonc
111 lines (109 loc) · 2.51 KB
/
.markdownlint-cli2.jsonc
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
// Disable some built-in rules
"config": {
// 定义文档中涉及的专有名词
"MD044": {
"code_blocks": false,
"html_elements": false,
"names": [
"Zotero",
"JavaScript",
"GitHub",
"WebDAV",
"Android",
"iOS",
"macOS",
"WPS",
"Word",
"ZotFile",
"Zotero Chinese"
]
},
// 兼容 Prettier
// @see https://github.com/DavidAnson/markdownlint/blob/main/doc/Prettier.md
"blanks-around-fences": false,
"blanks-around-headings": false,
"blanks-around-lists": false,
"code-fence-style": false,
"emphasis-style": false,
"heading-start-left": false,
"hr-style": false,
"line-length": false,
"list-indent": false,
"list-marker-space": false,
"no-blanks-blockquote": false,
"no-hard-tabs": false,
"no-missing-space-atx": false,
"no-missing-space-closed-atx": false,
"no-multiple-blanks": false,
"no-multiple-space-atx": false,
"no-multiple-space-blockquote": false,
"no-multiple-space-closed-atx": false,
"no-trailing-spaces": false,
"ol-prefix": false,
"strong-style": false,
"ul-indent": false,
// 其他规则配置
// @see https://github.com/vuepress-theme-hope/vuepress-theme-hope/blob/main/.markdownlint.json
"default": true,
"MD003": {
"style": "atx"
},
"MD004": {
"style": "dash"
},
"MD013": false,
"MD024": {
"siblings_only": true
},
"MD025": {
"front_matter_title": ""
},
"MD033": {
"allowed_elements": [
"br",
"template",
"script",
"style",
"ArtPlayer",
"AudioPlayer",
"AutoCatalog",
"Badge",
"BiliBili",
"Catalog",
"CodePen",
"DemoProject",
"FontIcon",
"ProjectLink",
"PDF",
"Replit",
"Share",
"SiteInfo",
"StackBlitz",
"XiGua",
"VideoPlayer",
"YouTube",
"AppearanceSwitch",
"HopeIcon",
"FlowChartPlayground",
"IconDisplay",
"KatexPlayground",
"NetlifyBadge",
"PrintButton",
"ThemeColorPicker",
"ToggleFullScreenButton",
"ToggleRTLButton"
]
},
// 兼容 Prettier 禁用
// "MD035": {
// "style": "---"
// },
"MD036": false,
"MD040": false,
"MD046": false,
"MD049": false
},
// Ignore files referenced by .gitignore (only valid at root)
"gitignore": true
}