Docker URL https://hub.docker.com/r/shimizukawa/textlint-rst/
Based upon https://hub.docker.com/r/shimizukawa/textlint/
Docker container with textlint.
see https://hub.docker.com/r/shimizukawa/textlint/
This image contains textlint plugins as follows:
To pull:
$ docker pull shimizukawa/textlint-rst
$ vi .textlintrc
# Edit textlint configurations
See textlint/docs/configuring.md and textlint/examples/config-file/ for more details.
For example:
{
"plugins": [
"rst"
],
"rules": {
"max-ten": {
"max": 3
},
"spellcheck-tech-word": true,
"no-mix-dearu-desumasu": true
}
}
Run as
$ docker run --rm -v ${PWD}:/data -w /data shimizukawa/textlint-rst <TEXTLINT_ARGS>
docker run
accept and pass a set of parameters to textlint CLI.