-
Notifications
You must be signed in to change notification settings - Fork 0
/
.textlintrc
65 lines (64 loc) · 1.96 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
{
"plugins": [
"html"
],
"rules": {
"max-ten": {
"max" : 3
},
"no-start-duplicated-conjunction": {
"interval" : 2
},
"no-doubled-conjunctive-particle-ga": true,
"no-doubled-conjunction": true,
"no-double-negative-ja": true,
"ja-no-redundant-expression": true,
"no-dropping-the-ra": true,
"ja-no-successive-word": true,
"@textlint-ja/no-synonyms": true,
"ja-hiragana-keishikimeishi": true,
"ja-hiragana-fukushi": true,
"ja-hiragana-hojodoushi": true,
"@textlint-ja/textlint-rule-no-insert-dropping-sa": true,
"prefer-tari-tari": true,
"ja-no-abusage": true,
"ja-no-mixed-period": true,
"ja-no-weak-phrase": true,
"no-mix-dearu-desumasu": {
"preferInHeader": "",
"preferInBody": "ですます",
"preferInList": "ですます",
"strict": true
},
"no-doubled-joshi": {
"min_interval" : 1,
"strict": false,
"allow": []
},
"terminology": {
"defaultTerms": true,
"skip": ["Blockquote"],
"terms": [
"JavaScript",
"ESLint",
"Sass",
"Less",
"npm",
["front[- ]end(\\w*)", "frontend$1"],
["back[- ]end(\\w*)", "backend$1"],
["web[- ]?site(s?)", "site$1"],
["hot[- ]key", "hotkey"],
["repo\\b", "repository"],
["CLI tool(s?)", "command line tool$1"],
["build system(s?)", "build tool$1"],
["id['’]?s", "IDs"],
["(\\w+[^.?!]\\)? )webpack", "$1webpack"],
["(\\w+[^.?!]\\)? )internet", "$internet"]
]
},
"preset-jtf-style": "true"
},
"filters": {
"whitelist": "true"
}
}