-
Notifications
You must be signed in to change notification settings - Fork 2
/
.textlintrc.json
42 lines (42 loc) · 1.11 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
{
"plugins": {},
"filters": {
"allowlist": {
"allow": [":::", "/:::.*/", "リーダブルコード"]
}
},
"rules": {
"ja-no-abusage": true,
"ja-no-mixed-period": true,
"ja-simple-user-dictionary": true,
"no-doubled-conjunctive-particle-ga": true,
"preset-ja-technical-writing": {
"sentence-length": false,
"no-exclamation-question-mark": false,
"max-kanji-continuous-len": {
"allow": ["開発基礎講習会", "静的経路制御", "経路制御手法", "動的経路制御", "直接相互接続"]
},
"no-mix-dearu-desumasu": {
"preferInHeader": "",
"preferInBody": "ですます",
"preferInList": "",
"strict": false
}
},
"preset-ja-spacing": {
"ja-space-between-half-and-full-width": {
"space": "always",
"allows": [
"第1回",
"第2回",
"SysAd班",
"/Web(サイト|アプリ|エンジニア|フロント|バックエンド)/"
]
}
},
"spellcheck-tech-word": true,
"prh": {
"rulePaths": ["./prh.yaml"]
}
}
}