forked from nablarch/nablarch-document
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.textlintrc
47 lines (46 loc) · 1.48 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
{
"plugins": [
"rst"
],
"filters": {
"comments": true
},
"rules": {
"preset-ja-technical-writing": {
"sentence-length": false, // 改行入れてないだけなので
"ja-no-mixed-period": false, // FQCN "foo.bar.Buz"などのピリオドに反応してしまうため
"no-doubled-joshi": false, // そこまで問題なさげなものまでNGになるため
"no-exclamation-question-mark": false, // そんなにカジュアルに!を使わないため(記号としての!に反応してしまう)
"max-kanji-continuous-len": {
// 連続できる漢字の文字数
// Allow max continuous length of kanji
// If {current} > max(5), report Error.
max: 8,
// 以下の単語は例外として無視します
allow: [
"倍精度浮動小数点数"
]
},
"no-unmatched-pair": false,
"ja-no-redundant-expression": {
"dictOptions": {
"dict5": {
"disabled": true
},
"dict6": {
allows: [
"/^\\)を.?実行/",
// デフォルトの許可リストは上書きされるので、デフォルト値も追加
"/^処理を実行/",
"/^[ァ-ヶ]+を.?実行/",
"/^[a-zA-Z]+を.?実行/"
]
}
}
}
},
"prh": {
"rulePaths" :[".textlint/conf/prh.yml"]
}
},
}