Skip to content

Commit

Permalink
test: add test case
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jan 6, 2024
1 parent ac8f9ba commit da658aa
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,18 @@ textlint --rule no-doubled-joshi README.md

> 登っ**たり**降り**たり**する
並立助詞(`たり`)は連続するのが意図した助詞であるため許可します
並立助詞(**たり**)が連続するのは、意図した助詞の使い方であるため許可します

### 〜かどうか

> これにする**かどう****検討する
このような場合、助詞(****)が連続していますが、"〜かどうか"表現は一般的であるため許可します。

📝 次のように書き換えることで、連続していない形にすることもできます。

> これにするかを検討する
- Issue: [質問: ~かどうか、について · Issue #62 · textlint-ja/textlint-rule-no-doubled-joshi](https://github.com/textlint-ja/textlint-rule-no-doubled-joshi/issues/62)
- [文節中の「か」の用法](https://jumonji-u.repo.nii.ac.jp/record/700/files/22-1.pdf)
- [かどうか/疑問詞・・・か](https://www.jpf.go.jp/j/urawa/j_rsorcs/textbook/setsumei_pdf/setsumei16_2.pdf>)
Expand Down
21 changes: 21 additions & 0 deletions test/no-doubled-joshi-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ tester.run("no-double-joshi", rule, {
}
]
},
// 連語(助詞)
{
// に + は と に + は
// https://github.com/textlint-ja/textlint-rule-no-doubled-joshi/issues/15
Expand All @@ -321,6 +322,26 @@ tester.run("no-double-joshi", rule, {
}
]
},
// 連語(助詞)
{
// かも + しれない と かも + しれない
// https://github.com/textlint-ja/textlint-rule-no-doubled-joshi/issues/15
text: "そこには問題があるかもしれないかもしれない。",
errors: [
{
message: `一文に二回以上利用されている助詞 "かも" がみつかりました。
次の助詞が連続しているため、文を読みにくくしています。
- ある"かも"
- ない"かも"
同じ助詞を連続して利用しない、文の中で順番を入れ替える、文を分割するなどを検討してください。
`,
range: [15, 16]
}
]
},
//
{
text: `今まで、サイトはNetlifyスライドはGitLab Pagesといった配信分けをしていたのですが、
Expand Down

0 comments on commit da658aa

Please sign in to comment.