-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.textlintrc
59 lines (59 loc) · 1.16 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"filters": {
"node-types": {
"nodeTypes": [
"BlockQuote",
"Link",
"ReferenceDef",
"Code"
]
}
},
"rules": {
"preset-ja-technical-writing": {
"sentence-length": {
"max": 150,
"skipPatterns": [
"/\\(.*\\)$\\./"
]
},
"ja-no-weak-phrase": false,
"no-exclamation-question-mark": false,
"no-mix-dearu-desumasu": {
"preferInHeader": "",
"preferInBody": "ですます",
"preferInList": "",
"strict": false
},
"ja-no-mixed-period": {
"periodMark": "。",
"allowPeriodMarks": [
"👍",
"👏",
"🖊️",
"😅",
"🚀",
"👌"
],
"allowEmojiAtEnd": true,
"forceAppendPeriod": false
},
"max-kanji-continuous-len": {
"max": 8
},
"no-doubled-joshi": {
"severity": "warning",
"allow": [
"も",
"としても",
"にも"
]
}
},
"prh": {
"rulePaths": [
".github/prh/rules/WEB+DB_PRESS_modified.yml"
]
}
}
}