-
Notifications
You must be signed in to change notification settings - Fork 10
/
.textlintrc
57 lines (57 loc) · 1.41 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
{
"rules": {
"prh": {
"rulePaths": [
"./techblog.yml"
]
},
"sentence-length": {
"max": 250
},
"max-comma": {
"max": 5
},
"max-ten": {
"max": 5
},
"max-kanji-continuous-len": {
"max": 8
},
"no-mix-dearu-desumasu": {
"preferInHeader": "",
"preferInBody": "ですます",
"preferInList": "である",
"strict": false
},
"ja-no-mixed-period": false,
"no-double-negative-ja": true,
"no-dropping-the-ra": true,
"no-start-duplicated-conjunction": {
"interval": 2
},
"no-doubled-conjunctive-particle-ga": true,
"no-nfd": true,
"no-exclamation-question-mark": false,
"no-hankaku-kana": true,
"ja-no-weak-phrase": false,
"ja-no-successive-word": true,
"ja-no-abusage": true,
"preset-ja-spacing": {
"textlint-rule-ja-space-between-half-and-full-width": {
"space": "always"
}
},
"preset-jtf-style": {
"3.1.1.全角文字と半角文字の間": false
}
},
"filters": {
"whitelist": {
"allow": [
"((",
"))",
"Webpack"
]
}
}
}