-
Notifications
You must be signed in to change notification settings - Fork 0
/
.textlintrc
47 lines (47 loc) · 1.47 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
{
"rules": {
"preset-smarthr":{
"no-mixed-zenkaku-and-hankaku-alphabet": false,
"sentence-length": false
},
"prh": {
"rulePaths": [
"dict/smarthr-prh-basic.yml",
"dict/smarthr-prh-tech-word.yml"
]
},
"general-novel-style-ja": {
"chars_leading_paragraph": " 「『【〈《((“\"‘'[[〔{{<<●",
"no_punctuation_at_closing_quote": true,
"space_after_marks": true,
"even_number_ellipsises": true,
"even_number_dashes": true,
"appropriate_use_of_punctuation": true,
"appropriate_use_of_interpunct": true,
"appropriate_use_of_choonpu": true,
"appropriate_use_of_minus_sign": true,
"max_arabic_numeral_digits": 5
},
"common-misspellings": {
"ignore": []
},
"max-ten": {
"max" : 3
},
"no-doubled-conjunctive-particle-ga": true,
"no-dropping-the-ra": true
},
"plugins": [
"review"
],
"filters": {
"comments": {
// enable comment directive
// if comment has the value, then enable textlint rule
"enablingComment": "textlint-enable",
// disable comment directive
// if comment has the value, then disable textlint rule
"disablingComment": "textlint-disable"
}
}
}