-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.textlintrc.json
47 lines (47 loc) · 1.19 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
47
{
"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-unnatural-alphabet": {
"allow": [
"/([A-GA-G]・?)*[A-GA-G]組/",
"/([A-GA-G]・?)*[A-GA-G]教室/",
"/ハンドボールコート([A-GA-G]・?)*[A-GA-G]/",
"喰いコミュニケーションXX"
]
},
"no-doubled-conjunction": true,
"no-doubled-conjunctive-particle-ga": true,
"no-doubled-joshi": true,
"no-dropping-the-ra": true,
"no-empty-section": true,
"no-mix-dearu-desumasu": {
"strict": true
},
"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"
},
"ja-no-space-between-full-width": false
}
},
"filters": {
"comments": true
}
}