forked from kamranahmedse/design-patterns-for-humans
-
-
Notifications
You must be signed in to change notification settings - Fork 477
/
.lintmdrc
35 lines (35 loc) · 884 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
34
35
{
"excludeFiles": [
"./.build/**",
"./.github/**",
"./node_modules/**",
"./vendor/**",
"./vendor-bin/**"
],
"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": [
2,
{
"length": 120,
"exclude": [
"dot"
]
}
]
}
}