-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.textlintrc
34 lines (34 loc) · 1.09 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
{
"rules": {
"@textlint-ja/morpheme-match": {
"dictionaryPathList": ["dict/morpheme-match-dict.js"]
},
"prh": {
"rulePaths" :[
"dict/prh-rule.yml",
"dict/prh-local-rule.yml"
]
},
"preset-jtf-style": {
"1.1.1.本文": false,
"2.1.9.アルファベット": false,
"4.2.9.ダッシュ(-)": false,
"2.1.8.算用数字": false,
"2.2.2.算用数字と漢数字の使い分け": false
},
"@textlint-ja/textlint-rule-no-synonyms": {
"allows": [
"ハロワ","ハローワーク",
"だし","出し",
"コロナ","コロナウイルス",
"ネット","ネットワーク",
"足","脚"
]
},
"general-novel-style-ja": {
"chars_leading_paragraph": false,
// アラビア数字の桁数は2桁まで (false: チェックしない)
"max_arabic_numeral_digits": 4
}
}
}