forked from angular/angular-ja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.textlintrc
44 lines (44 loc) · 871 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
{
"filters": {
"comments": true,
"allowlist": {
"allow": [
"/<docs-code[\\s\\S]*?</docs-code>/m"
]
}
},
"rules": {
"prh": {
"rulePaths": [
"./prh.yml"
]
},
"preset-ja-spacing": {
"ja-space-after-question": false,
"ja-space-after-exclamation": false
},
"preset-ja-technical-writing": {
"sentence-length": false,
"max-comma": false,
"no-mix-dearu-desumasu": {
"preferInList": ""
},
"no-doubled-joshi": {
"allow": [
"の",
"が",
"に",
"にも"
]
},
"no-exclamation-question-mark": false,
"ja-no-weak-phrase": false,
"max-kanji-continuous-len": {
"allow": [
"二重中括弧構文"
]
},
"ja-no-mixed-period": false
}
}
}