1
0
hugo/content/blog/2016-10-10-textlint.md
2024-04-23 22:21:26 +09:00

19 lines
598 B
Markdown

+++
date = "2016-10-10"
tags = ["memo"]
title = "textlint"
slug = "textlint"
+++
`textlint`は日本語文章が正しいかチェックしてくれるツールです。
まずグローバルにインストールし、シェルから実行してみます。あと、`~/.textlintrc`を書くことでオプションを省略できます。
```bash
$ npm i -g textlint
$ npm i -g textlint-rule-max-ten textlint-rule-spellcheck-tech-word textlint-rule-no-mix-dearu-desumasu
$ textlint --rule no-mix-dearu-desumasu --rule max-ten --rule spellcheck-tech-word README.md
$ touch ~/.textlintrc
```