Check easy-to-read Hojodoushi(auxiliary verbs) written in Hiragana than Kanji.
漢字よりもひらがなで表記したほうが読みやすい補助動詞を指摘します。検出には形態素解析を使っています。自動修正にも対応しています。
Install with npm:
npm install textlint-rule-ja-hiragana-hojodoushi
Via .textlintrc
(Recommended)
{
"rules": {
"ja-hiragana-hojodoushi": true
}
}
Or you can specify custom dictionary as follows:
{
"rules": {
"ja-hiragana-hojodoushi": {
"rulePath": "path/to/custom.yml"
}
}
}
Via CLI
textlint --rule ja-hiragana-hojodoushi README.md
textlint --fix ja-hiragana-hojodoushi README.md
Builds source codes for publish to the lib
folder.
You can write ES2015+ source codes in src/
folder.
npm run build
Run test code in test
folder.
Test textlint rule by textlint-tester.
npm test
from | to |
---|---|
〜して頂く | 〜していただく |
〜して下さい | 〜してください |
〜して行く | 〜していく |
〜して来る | 〜してくる |
〜致します | 〜いたします |
〜し出す | 〜しだす |
MIT © Hiroshi Takase