forked from genai-docs/genai-mkdocs-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.textlintrc.json
More file actions
45 lines (45 loc) · 1.32 KB
/
.textlintrc.json
File metadata and controls
45 lines (45 loc) · 1.32 KB
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
{
"rules": {
"no-mix-dearu-desumasu": {
"preferInBody": "である",
"preferInHeader": "である",
"preferInList": "である"
},
"preset-japanese": {
"sentence-length": { "max": 150 },
"max-ten": { "max": 4 },
"no-doubled-joshi": {
"min_interval": 1,
"strict": false,
"allow": ["も", "や", "か"],
"separatorChars": ["、", "。", "?", "!", "?", "!", "「", "」"]
},
"ja-no-mixed-period": {
"allowPeriodInList": false,
"forcePeriodInList": false
}
},
"preset-ja-spacing": {
"ja-space-between-half-and-full-width": false,
"ja-space-around-code": false
},
"preset-jtf-style": {
"1.1.3.箇条書き": false,
"1.2.1.句点(。)と読点(、)": true,
"1.2.2.ピリオド(.)とカンマ(,)": true,
"2.1.8.算用数字": true,
"2.2.2.算用数字と漢数字の使い分け": true,
"3.1.1.全角文字と半角文字の間": true,
"3.1.2.全角文字どうし": true,
"4.1.3.ピリオド(.)、カンマ(,)": true,
"4.2.6.ハイフン(-)": false,
"4.3.1.丸かっこ()": true,
"4.3.2.大かっこ[]": true
},
"prh": {
"rulePaths": [
"./node_modules/textlint-rule-preset-icsmedia/dict/prh.yml"
]
}
}
}