Skip to content

Commit

Permalink
docs: add rule strictMode
Browse files Browse the repository at this point in the history
  • Loading branch information
GunseiKPaseri committed Aug 14, 2024
1 parent abdc5a6 commit fe1d977
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,15 @@ textlint --rule ja-overlooked-typo README.md

- `allow`:例外とする文字列のリスト
- `"$num$"`:カタカナの単位等で数字が入る場合に含める(漢数字が入る場合を例外として扱います)
- `strictMode``true`の場合、誤検知も恐れず積極的に検出します。
- 「データベースへアクセス」の「へ」などにも反応する可能性があります。

```
{
"rules": {
"ja-overlooked-typo": {
"allow": ["$num$ペニー"]
"allow": ["$num$ペニー"],
"strictMode": true,
}
}
}
Expand Down

0 comments on commit fe1d977

Please sign in to comment.