-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.textlintrc
54 lines (54 loc) · 1017 Bytes
/
.textlintrc
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
{
"plugins": {
"@textlint/markdown": {
"extensions": [
".md"
]
}
},
"rules": {
"preset-ja-technical-writing": {
"ja-no-successive-word": {
"allow": [
"〇",
"△"
]
},
"no-exclamation-question-mark": false,
"ja-no-weak-phrase": false,
"no-doubled-joshi": {
"strict": false,
"allow": [
"か"
]
}
},
"preset-ja-spacing": {
"ja-space-between-half-and-full-width": {
"space": "always",
"exceptPunctuation": true
},
"ja-space-around-code": {
"before": true,
"after": true
}
},
"ja-technical-writing/ja-no-mixed-period": {
"allowPeriodMarks": [
":",
"笑",
"…",
"🙏"
]
},
"ja-technical-writing/sentence-length": false
},
"filters": {
"comments": true,
"allowlist": {
"allow": [
"/\\$\\$[\\s\\S]*?\\$\\$/m"
]
}
}
}