forked from being24/latex-template-ja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.textlintrc
76 lines (76 loc) · 2.15 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
{
"plugins": [
"latex2e"
],
"filters": {
"comments": true,
"allowlist": {
"allow": [
"github.com",
"github.com/github/"
]
}
},
"rules": {
"preset-ja-technical-writing": {
"no-invalid-control-character": true,
"no-unmatched-pair": true,
"sentence-length": {
"max": 120
},
"no-nfd": true,
"no-doubled-joshi": {
"min_interval": 1,
"strict": false,
"allow": [
"も",
"や",
"にも"
],
"separatorCharacters": [
".",
"。"
],
"commaCharacters": [
"、",
","
]
},
"no-doubled-conjunction": true,
"no-doubled-conjunctive-particle-ga": true,
"no-dropping-the-ra": true,
"no-double-negative-ja": true,
"ja-unnatural-alphabet": true,
"ja-no-redundant-expression": true,
"ja-no-abusage": true,
"ja-no-successive-word": true,
"ja-no-weak-phrase": true,
"max-kanji-continuous-len": true,
"max-ten": {
"touten": ",",
"kuten": "."
},
"ja-no-mixed-period": {
"periodMark": ".",
"allowPeriodMarks": [],
"allowEmojiAtEnd": false,
"forceAppendPeriod": true
},
"no-mix-dearu-desumasu": {
"preferInHeader": "である",
"preferInBody": "ですます",
"preferInList": "である",
"strict": true
},
"no-exclamation-question-mark": true,
"no-hankaku-kana": true,
"no-zero-width-spaces": true,
"preset-jtf-style": true
},
"prh": {
"rulePaths": [
"./prh.yml"
]
}
}
}