npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

textlint-rule-ja-tojihiraki

v0.0.3

Published

漢字を開閉するためのtextlintルール

Downloads

5

Readme

textlint-rule-ja-tojihiraki

npm version Node.js CI textlint rule

textlint-rule-ja-tojihiraki は漢字の開閉を統一するtextlintルールです。

漢字を「ひらく」というのは、漢字の読みや文字から受ける印象を考慮し一部をひらがなで表記することで、読みやすく誤読しにくい文章へと変えることです。「閉じる」はその逆です。 漢字とひらがな、どちらで書くかが統一されるので、表記揺れを減らすことにも繋がります。

例:

丁度良かった。色々話を聞いて頂きたいと思っていた所でした。
↓
ちょうどよかった。いろいろ話を聞いていただきたいと思っていたところでした。

インストール

npm install -g textlint-rule-ja-tojihiraki

使い方

.textlintrc.json を利用する場合 (推奨):

{
  "rules": {
    "ja-tojihiraki": true
  }
}

CLIから利用する場合:

textlint --rule ja-tojihiraki README.md

設定

閉じるか無視するか、各種例外を設定することができます。

デフォルトでは全てを開くべきとなっています。

{
  "rules": {
    "ja-tojihiraki": {
      "ignore": [ "イタダキ" ], // 無視する値
      "force-close": [ "doushi", "jodoushi", "kandoushi", "meishi", "keiyoushi", "meishi" ], // 閉じるべき値
    },
  }
}
  • "all":全ての品詞を対象
  • 形態素の格
    • "daimeishi" : 代名詞 「貴方」等
    • "fukugoukakujoshi" : 複合格助詞 「を始め」
    • "fukujoshi" : 副助詞 「程」等
    • "fukushi" : 副詞 「余り」等
    • "hojodoushi" : 補助動詞 「上げ」等
    • "hojokeiyoushi" : 補助形容詞 「欲しい」等
    • "keishikimeishi" : 形式名詞 「事」等
    • "doushi : 動詞 「分かる」等
    • "jodoushi" : 助動詞 「御座い」等
    • "kandoushi" : 感動詞 「有難う」等
    • "keiyoushi" : 形容詞 「有難い」等
    • "meishi" : 名詞 「全て」等
    • "rentaishi" : 連体詞 「色んな」等
    • "setsuzokushi" : 接続詞 「或いは」等
  • 各単語(読みのカタカナ)

優先順位は、各単語 > 形態素の格 > "all"で、同じ設定値が複数含まれていたら、ignore > force-close > force-openです。

開発

ビルド

npm run build

テスト

textlint-tester を利用してテストします。

npm test

参考文献

開発するにあたり、以下の書籍やページを参考にさせていただきました。

このTextlintプロジェクトはakiomik氏のtextlint-rule-ja-hirakuをベースとしております。