1.0.1 • Published 2 years ago

textlint-rule-ja-simple-user-dictionary v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

textlint-rule-ja-simple-user-dictionary

シンプルなユーザー辞書をもとに校正するtextlintルール。

特長

シンプルな辞書定義

正規表現を使わずに辞書を定義します。 なぜ辞書に登録されているか、説明を書くこともできます。

Google Spread Sheetで辞書を管理するのもおすすめです。 https://github.com/hata6502/textlint-rule-ja-simple-user-dictionary/pull/5#issuecomment-1200366919

文脈に合ったマッチング

形態素解析を行い、単語単位で入力文章と辞書データをマッチングします。 文脈に合わない不正確なマッチを防ぎます。

置換機能なし

文脈が崩れやすいため、文章の置換機能はありません。

Install

Install with npm:

npm install textlint-rule-ja-simple-user-dictionary

Usage

Via .textlintrc(Recommended)

{
  "rules": {
    "ja-simple-user-dictionary": {
      "dictionary": [
        {
          "pattern": "typo"
        },
        {
          "pattern": "ふいんき",
          "message": "「ふいんき」ではなく「ふんいき」です。"
        }
      ]
    }
  }
}

Build

Builds source codes for publish to the lib folder. You can write ES2015+ source codes in src/ folder.

npm run build

Tests

Run test code in test folder. Test textlint rule by textlint-tester.

npm test

License

MIT © Tomoyuki Hata