-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.textlintrc
61 lines (61 loc) · 1.72 KB
/
.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
55
56
57
58
59
60
61
{
"plugins": [
"latex2e"
],
"filters": {
"comments": true,
"allowlist": {
"allow": [
"github.com",
"github.com/github/"
]
}
},
"rules": {
"preset-ja-technical-writing": {
"no-invalid-control-character": true,
"no-unmatched-pair": true,
"sentence-length": {
"max": 120
},
"no-nfd": true,
"no-doubled-joshi": {
"min_interval": 1,
"strict": false,
"allow": ["も", "や", "にも"],
"separatorCharacters": [
".", "。"
],
"commaCharacters": [
"、", ","
]
},
"no-doubled-conjunction": true,
"no-doubled-conjunctive-particle-ga": true,
"no-dropping-the-ra": true,
"no-double-negative-ja": true,
"ja-unnatural-alphabet": true,
"ja-no-redundant-expression": true,
"ja-no-abusage": true,
"ja-no-successive-word": true,
"ja-no-weak-phrase": true,
"ja-no-mixed-period": {
"periodMark": ".",
"allowPeriodMarks": [],
"allowEmojiAtEnd": false,
"forceAppendPeriod": true
},
"no-mix-dearu-desumasu": {
"preferInHeader": "である",
"preferInBody": "です",
"preferInList": "である",
"strict": true
}
},
"prh": {
"rulePaths": [
"./prh.yml"
]
}
}
}