-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.textlintrc
85 lines (85 loc) · 1.92 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"plugins": {
"review-starter": {
"extensions": [".re"]
}
},
"rules": {
"preset-ja-technical-writing": {
"sentence-length": {
"max": 100
},
"max-comma": {
"max": 3
},
"max-ten": {
"max": 3
},
"max-kanji-continuous-len": {
"max": 6
},
"arabic-kanji-numbers": true,
"no-mix-dearu-desumasu": {
"preferInHeader": "",
"preferInBody": "ですます",
"preferInList": "ですます",
"strict": true
},
"ja-no-mixed-period": {
"periodMark": "。",
"allowPeriodMarks": ["、"]
},
"no-double-negative-ja": true,
"no-dropping-the-ra": "true",
"no-doubled-conjunctive-particle-ga": true,
"no-doubled-conjunction": true,
"no-doubled-joshi": {
"min_interval": 1
},
"no-nfd": true,
"no-invalid-control-character": true,
"no-exclamation-question-mark": false,
"no-hankaku-kana": true,
"ja-no-weak-phrase": true,
"ja-no-successive-word": true,
"ja-no-abusage": true,
"ja-no-redundant-expression": true,
"ja-unnatural-alphabet": true,
"no-unmatched-pair": true
},
"preset-ja-spacing": {
"ja-space-between-half-and-full-width": {
"space": "never",
"exceptPunctuation": true
},
"ja-space-around-code": {
"before": true,
"after": true
}
},
"prh": {
"rulePaths" :["./prh-rules/WEB+DB_PRESS.yml"]
}
},
"filters": {
"allowlist": {
"allow": [
"/(.|)[0-9]+(ヶ|か)月/",
"/(.|)[0-9,]+(分|つ|回|時)/",
"・・・",
"はじめに",
"python",
"module",
"path",
"babel",
"typescript",
"基づ",
"コピペ",
"あるある",
"immutable",
"おわりに",
"アプリ"
]
}
}
}