-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.textlintrc
49 lines (49 loc) · 991 Bytes
/
.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
{
"filters": {
"comments": true
},
"plugins": {
"@textlint/markdown": {
"extensions": [
".md"
]
}
},
"rules": {
"preset-ja-technical-writing": {
"no-exclamation-question-mark": false,
"no-doubled-joshi": false,
"ja-no-successive-word": {
"allow": [
"・"
]
},
"ja-no-mixed-period": {
"allowPeriodMarks": [
":"
]
},
"max-comma": false,
"ja-no-weak-phrase": {
"severity": "warning"
},
"ja-no-redundant-expression": {
"severity": "warning"
},
"sentence-length": false
},
"preset-ja-spacing": {
"ja-space-between-half-and-full-width": {
"space": "always",
"exceptPunctuation": true
},
"ja-space-around-code": {
"before": true,
"after": true
}
}
},
"@proofdict/proofdict": {
"dictURL": "https://azu.github.io/proof-dictionary/"
}
}