Skip to content

san-tak/docker-textlint-simple

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

textlint-simple

textlint をシンプルにprhのルールのみでチェックするDockerコンテナです。

コンテナ内のRules

This image contains textlint rules as follows:

Install

$ docker pull santak/textlint-simple

Configuration

$ git clone https://github.com/san-tak/docker-textlint-simple.git
$ vi .textlintrc

Dockerホストマシンのカレントディレクトリ.textlintrcrulePaths へprh でチェックを行いたいルールを記述してください。

{
    "rules": {
        "preset-japanese": true,
        "prh": {
            "rulePaths": [
                "./prh/prh-rules/media/WEB+DB_PRESS.yml,
                "./sample.yml"
            ]
        }
    }
}

prh のルール例は、prh のリポジトリから入手します。

$ git clone https://github.com/prh/prh.git

Run

$ docker run -it --rm -v $PWD:/work santak/textlint-simple --rule prh README.md
  • for SELinux
$ docker run -it --rm -v $PWD:/work:Z santak/textlint-simple --rule prh README.md

build したい場合

$ git clone https://github.com/san-tak/docker-textlint-simple.git
$ docker build --tag santak/textlint-simple .

Error Example

このリポジトリのsample.yml ルールでこのREADME.md は次の2行がエラーとなります。

  • 下さい -> ください
  • 全て -> すべて

error_sample

Refs.

About

Docker container for textlint simple version

Resources

License

Stars

Watchers

Forks

Packages

No packages published