-
Notifications
You must be signed in to change notification settings - Fork 1
/
.textlintrc
55 lines (55 loc) · 1.46 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
{
"rules": {
// ja-technical-writing/xxxというルールを制御する設定
"preset-ja-technical-writing": {
"sentence-length": {
max: 100
},
"max-ten": {
"max": 3
}
},
"prh": {
"rulePaths": [
"./prh-rules/languages/ja/typo.yml",
"./prh-rules/terms/software.yml",
"./prh-rules/terms/trademark.yml",
"./prh-rules/media/techbooster.yml",
"./prh-rules/media/WEB+DB_PRESS.yml"
]
}
},
"plugins": [
"review"
],
"filters": {
// 特定の行ではtextlintを無視するための設定。
// Usage:
// #@#(Re:VIEWのコメント記法)を使ってtextlintを無視したい部分を囲みます。
//
// #@# textlint-disable
//
// textlintを無視したい行。必ず前後に空白行を入れること。
//
// #@# textlint-enable
//
// 詳細は参考リンクで確認してください。
//
// 参考
// https://github.com/textlint/textlint-filter-rule-comments
// https://qiita.com/azu/items/0f8ca9f1fd531d6b2f4b
"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"
},
"whitelist": {
"whitelistConfigPaths": [
"./allow.yml",
]
}
}
}