-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.textlintrc
42 lines (42 loc) · 852 Bytes
/
.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
{
"rules": {
"preset-smarthr": {
"sentence-length": false,
"ja-no-mixed-period": {
"periodMark": "。",
"allowPeriodMarks": [
"、",
".",
",",
"↓",
"?",
"・",
"`",
"…"
],
"allowEmojiAtEnd": true
}
},
"prh": {
"rulePaths": [
"dict/prh_tubone_blog.yml"
]
},
"no-start-duplicated-conjunction": {
"interval": 2
},
"no-mixed-zenkaku-and-hankaku-alphabet": true,
"ja-no-inappropriate-words": true,
"terminology": {
"defaultTerms": true,
"skip": ["Blockquote"]
},
"@textlint-rule/no-duplicate-abbr": true
},
"filters": {
"comments": true,
"allowlist": {
"allowlistConfigPaths": ["./textlint-allow-list.yml"]
}
}
}