-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy path.textlintrc
51 lines (51 loc) · 3.06 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
{
"filters": {
"comments": true
},
"rules": {
"preset-weseek": {
// 英文用ルールだが、精度が低いので一時的にfalseにする
// 将来的にはpreset-weseekから除外する予定
"ginger": false,
"no-dead-link": false,
// Github Actions で全ファイルを同時に lint した場合、リクエスト過多で不安定になるため無効にする
// "no-dead-link": {
// "checkRelative": true,
// "baseURI": "https://docs.growi.org/",
// "ignore": [
// // 以下のURLはリンク切れ、またはリダイレクトされる場合でも無視する
// "http://localhost*",
// "https://slack.com/services/new/incoming-webhook",
// "https://s3.console.aws.amazon.com/s3",
// "https://api.slack.com/apps/\[AppID*",
// "https://api.slack.com/apps/\[AppID*\/*",
// ],
// // 以下のオプションはリクエスト過多に対応するための実験的パラメーターなので、ローカルで使う場合は不要
// "maxRetryTime": 10,
// "concurrency": 1, // {number} Concurrency count of linting link [Experimental]
// "interval": 1000, // The length of time in milliseconds before the interval count resets. Must be finite. [Experimental]
// "intervalCap": 2, // The max number of runs in the given interval of time. [Experimental]
// },
"ja-no-mixed-period": {
// :を日本語と認識してしまうので、句点として許可する
"allowPeriodMarks": ":",
},
"max-kanji-continuous-len": {
// 以下は6字以上の漢字の連続を許可する
"allow": ["証明書文字列","同時接続数上限","同時多人数編集","自動起動設定","全文検索管理","外部認証機構","通知詳細設定","最終更新日時","認証機構設定","全文検索機能", "個人設定画面","識別子生成器","開発環境構築","自己署名証明書","検索結果一覧画面","強調赤字背景反転","編集画面下部","編集画面上部","利用推奨環境", "自動増量機能", "独立行政法人情報処理推進機構", "教育関係団体", "組織詳細画面", "管理画面表示時", "環境設定情報", "組織情報入力", '数分程度停止', '別途個別契約', '適格請求書等保存方式', '適格請求書発行事業者登録番号', '適格請求書発行事業者公表']
},
// 単位を扱う文章が少なく、ソフトウェアのバージョン記載でエラーを検知してしまうので無効にする
"use-si-units": false,
"sentence-length": {
"max": 160,
"skipPatterns": [
// 英文は文字数制限の対象外にする
"/^[a-zA-Z0-9!#$%'\"&()*+,.:;<=>▲→?@\\[\\]^_{|}~-\\s`\\/]+$/"
]
},
//現在 Github Actions で辞書ファイルを参照できないので、解決するまで無効化する
//https://github.com/hata6502/textlint-rule-no-hoso-kinshi-yogo/issues/4
"no-hoso-kinshi-yogo": false,
}
}
}