-
Notifications
You must be signed in to change notification settings - Fork 1
/
.textlintrc.json
46 lines (46 loc) · 1.05 KB
/
.textlintrc.json
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
{
"plugins": {
"jsx": true,
"@textlint/markdown": {
"extensions": [".mdx"]
}
},
"rules": {
"@textlint-ja/textlint-rule-no-insert-dropping-sa": true,
"ja-hiragana-fukushi": true,
"ja-hiragana-hojodoushi": true,
"ja-hiragana-keishikimeishi": true,
"ja-no-inappropriate-words": true,
"ja-no-abusage": true,
"ja-no-mixed-period": {
"periodMark": "。",
"allowPeriodMarks": [";", "・"]
},
"ja-unnatural-alphabet": true,
"no-doubled-conjunction": true,
"no-doubled-conjunctive-particle-ga": true,
"no-doubled-joshi": {
"strict": false,
"allow": ["も", "や"]
},
"no-dropping-the-ra": true,
"no-empty-section": true,
"no-mix-dearu-desumasu": {
"strict": false
},
"no-nfd": true,
"prefer-tari-tari": true,
"preset-ja-spacing": {
"ja-space-around-code": {
"before": true,
"after": true
},
"ja-space-between-half-and-full-width": {
"space": "always"
}
}
},
"filters": {
"comments": true
}
}