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 🙏

© 2025 – Pkg Stats / Ryan Hefner

textlint-rule-preset-ja-engineering-paper

v1.0.4

Published

textlint rule preset for Japanese academic papers of enginering

Readme

textlint-rule-preset-ja-engineering-paper

npm version Maintainability textlint rule Greenkeeper badge

日本語の工学系論文のためのtextlintルールプリセット

textlint rule preset for Japanese academic papers of enginering

Install

$ npm i textlint-rule-preset-ja-engineering-paper

Usage

Via .textlintrc(Recommended)

{
    "rules": {
        "preset-ja-engineering-paper": true
    }
}

Via CLI

$ textlint --preset preset-ja-engineering-paper README.md

他のpresetとの併用

より広範な文章向けのpreset-japanesepreset-ja-technical-writingpreset-jtf-stylepreset-ja-spacingとの併用をお勧めします。 ただし、句読点をチェックするルールと競合する場合があります。.textlintrcなどを使い、適宜無効化してください。

.textlintrcの例

{
  "plugins": [],
  "rules": {
    "preset-ja-engineering-paper": true,
    "preset-ja-spacing": true,
    "preset-ja-technical-writing": {
      "ja-no-mixed-period": {
        "periodMark": "."
      },
      "max-kanji-continuous-len": {
        max: 8,
        allow: [
          "日本機械学会論文集"
        ]
      },
    },
    "preset-japanese": true,
    "preset-jtf-style": {
      "1.2.1.句点(。)と読点(、)": false,
      "1.2.2.ピリオド(.)とカンマ(,)": false,
      "4.1.3.ピリオド(.)、カンマ(,)": false
    },
  }
}

Rules

textlint-rule-ja-hiragana-fukushi

漢字よりもひらがなで表記したほうが読みやすい副詞

textlint-rule-ja-hiragana-keishikimeishi

漢字よりもひらがなで表記したほうが読みやすい形式名詞

textlint-rule-ja-hiragana-hojodoushi

漢字よりもひらがなで表記したほうが読みやすい補助動詞

@textlint-ja/textlint-rule-no-synonyms

文章中の同義語の表記ゆれをチェックする

textlint-rule-prh

辞書ベースのチェック

辞書には論文にそぐわない表現をチェックするための設定を収録しています。

unify-kuten-and-touten

  • (「preset-jtf-style/1.2.1. 句点(。)と読点(、)」の改変ルール)
  • 工学系の論文などを対象に、句読点を統一します。
  • デフォルトは日本機械学会論文集が指定している「.」(全角ピリオド)と「,」(全角カンマ)です。
    • これらはoptionで変更できます。
  • TODO: 英語のアブストラクトのみ、半角記号を使う場合などの対処

textlint-rule-use-si-units

SI単位系の単位以外の使用を禁止する

参考資料(全て2020年1月5日閲覧)

Develop

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