-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
.lintmdrc
33 lines (33 loc) · 820 Bytes
/
.lintmdrc
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
{
"excludeFiles": [
"tests/",
"vendor/",
"./CHANGELOG.md"
],
"rules": {
"space-around-alphabet": 2,
"space-around-number": 2,
"no-empty-code-lang": 2,
"no-empty-url": 2,
"no-empty-list": 2,
"no-empty-code": 2,
"no-empty-inline-code": 2,
"no-empty-blockquote": 2,
"no-special-characters": 2,
"use-standard-ellipsis": 2,
"no-fullwidth-number": 2,
"no-space-in-link": 2,
"no-multiple-space-blockquote": 2,
"correct-title-trailing-punctuation": 2,
"no-space-in-inline-code": 2,
"no-long-code": [
1,
{
"length": 200,
"exclude": [
"dot"
]
}
]
}
}