forked from yo-goto/zenn-public-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.textlintrc
37 lines (37 loc) · 905 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
{
"plugin": {
"@textlint/markdown": {
"extensions": [".md"]
}
},
"rules": {
"preset-ja-technical-writing": {
"ja-no-redundant-expression": false,
"no-exclamation-question-mark": false,
"no-doubled-joshi": {
"strict": false,
"allow": ["か"]
},
"ja-no-weak-phrase": false,
"ja-no-mixed-period": false,
"max-kanji-continuous-len": false
},
"preset-ja-spacing": {
"ja-space-between-half-and-full-width": {
"space": "always",
"exceptPunctuation": true
},
"ja-space-around-code": {
"before": true,
"after": true
}
},
"ja-technical-writing/ja-no-mixed-period": {
"allowPeriodMarks": [":"]
},
"ja-technical-writing/sentence-length": false,
"@proofdict/proofdict": {
"dictURL": "https://yo-goto.github.io/proof-dictionary/"
}
}
}