-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
.textlintrc.js
122 lines (122 loc) · 4.24 KB
/
.textlintrc.js
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
const IS_LINK_CHECK = !!process.env.LINK_CHECK;
module.exports = {
"filters": {
"comments": true,
"allowlist": {
"allow": [
"/{#[a-z.-]*?}/g",
"/{{[a-zA-Z.]*?}}/g",
"と考えるかもしれません",
"ブラウザーの開発者ツールとは?",
]
}
},
"rules": {
"@textlint-ja/no-synonyms": {
"allows": ["アプリ", "ウェブアプリ"]
},
// 使っては行けない変数、関数名
// 詳細: https://github.com/asciidwango/js-primer/issues/804
"inline-code-denylist": {
"denylist": ["string", "number", "object", "boolean", "symbol"]
},
"no-use-column": true,
"footnote-order": true,
"no-use-prototype-hash": {
"allow": [
// CSSセレクタの表現であるため許可
"div#result"
]
},
"@textlint-rule/require-header-id": true,
// 箇条書きには。を付けない
"period-in-list-item": {
"periodMark": ""
},
"no-js-function-paren": {
"allow": [
"Symbol"
]
},
"preset-ja-technical-writing": {
"no-mix-dearu-desumasu": {
"preferInHeader": "",
"preferInBody": "ですます",
"preferInList": "ですます",
"strict": false
},
"ja-no-redundant-expression": {
"dictOptions": {
// "すること[助詞]できる"
// https://github.com/textlint-ja/textlint-rule-ja-no-redundant-expression#dict2
"dict2": {
"disabled": true
},
"dict5": {
"allows": [
"/読み書き/",
"/通信/",
// デフォルトの許可リストは上書きされるので、維持したい場合は追加する
"/^処理を行[ぁ-ん]/",
"/^[ァ-ヶ]+を.?行[ぁ-ん]/",
"/^[a-zA-Z]+を.?行[ぁ-ん]/",
]
}
}
},
"sentence-length": {
"max": 95,
"skipPatterns": [
// 文末の(...)。はカウントしない
"/(.*?)。$/"
]
},
"no-exclamation-question-mark": {
"allowFullWidthQuestion": true
},
"max-kanji-continuous-len": {
"max": 6,
"allow": [
"倍精度浮動小数",
"浮動小数点数",
"排他的論理和",
"文字列演算子",
"厳密等価演算子",
"不等価演算子",
"厳密比較演算子",
"厳密不等価演算子",
"論理積演算子",
"論理和演算子",
"排他的論理和演算子",
"文字列結合演算子",
"符号化文字集合"
]
},
"no-invalid-control-character": {
"checkCode": true
}
},
"eslint": {
"configFile": "./eslint.config.mjs"
},
"prh": {
"rulePaths": [
"prh.yml"
]
},
// npm run textlint-linkでのみ外部URLをチェックする
"no-dead-link": IS_LINK_CHECK
? {
"concurrency": 4,
"ignore": [
"https://github.com/asciidwango/js-primer/issues/new?*",
"ttps://help.github.com/articles/about-pull-requests/", // 言語にリダイレクトがある
"https://goo.gl/**",
"https://forms.gle/**",
"http://localhost:3000/**"
],
maxRetryAfterTime: 60
}
: false
}
};