-
Notifications
You must be signed in to change notification settings - Fork 0
/
.textlintrc
58 lines (58 loc) · 2.68 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
// npm i -g textlint textlint-rule-max-ten textlint-rule-max-kanji-continuous-len textlint-rule-spellcheck-tech-word textlint-rule-web-plus-db textlint-rule-no-mix-dearu-desumasu textlint-rule-no-doubled-joshi textlint-rule-no-double-negative-ja textlint-rule-no-hankaku-kana textlint-rule-ja-no-weak-phrase textlint-rule-ja-no-redundant-expression textlint-rule-ja-no-abusage textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet textlint-rule-no-dropping-the-ra textlint-rule-no-doubled-conjunctive-particle-ga textlint-rule-no-doubled-conjunction textlint-rule-ja-no-mixed-period textlint-rule-incremental-headers textlint-rule-ja-hiragana-keishikimeishi textlint-rule-ja-hiragana-fukushi textlint-rule-ja-hiragana-hojodoushi textlint-rule-ja-unnatural-alphabet @textlint-ja/textlint-rule-no-insert-dropping-sa textlint-rule-prefer-tari-tari textlint-rule-general-novel-style-ja textlint-rule-sentence-length textlint-rule-max-comma textlint-rule-preset-jtf-style textlint-rule-no-nfd @textlint-rule/textlint-rule-no-invalid-control-character textlint-rule-no-zero-width-spaces textlint-rule-no-exclamation-question-mark textlint-rule-ja-no-successive-word @textlint-rule/textlint-rule-no-unmatched-pair
{
"rules": {
"sentence-length": {
"max": 100
},
"max-comma": {
"max": 3
},
"max-ten": {
"max": 3
},
"max-kanji-continuous-len": {
"max": 6,
"allow": ["倍精度浮動少数点数"]
},
"preset-jtf-style": false,
"spellcheck-tech-word": true,
// "web-plus-db": true,
"no-mix-dearu-desumasu": {
"preferInHeader": "",
"preferInBody": "ですます",
"preferInList": "である",
"strict": true
},
"ja-no-mixed-period": {
"periodMark": "。"
},
"no-doubled-joshi": {
"min_interval": 1,
"strict": false,
"allow": []
},
"no-double-negative-ja": true,
"no-hankaku-kana": true,
"ja-no-weak-phrase": true,
"ja-no-redundant-expression": true,
"ja-no-abusage": true,
"no-mixed-zenkaku-and-hankaku-alphabet": true,
"no-dropping-the-ra": true,
"no-doubled-conjunctive-particle-ga": true,
"no-doubled-conjunction": true,
"incremental-headers": true,
"ja-hiragana-keishikimeishi": true,
"ja-hiragana-fukushi": true,
"ja-hiragana-hojodoushi": true,
"ja-unnatural-alphabet": true,
"@textlint-ja/textlint-rule-no-insert-dropping-sa": true,
"prefer-tari-tari": true,
"general-novel-style-ja": false,
"no-nfd": true,
"@textlint-rule/no-invalid-control-character": true,
"no-zero-width-spaces": true,
"no-exclamation-question-mark": false,
"ja-no-successive-word": true,
"@textlint-rule/no-unmatched-pair": true,
}
}