Short Description
Elm-format with Docker.
Full Description
Docker Beautifiers 
Docker images for code beautifiers/formatters.
Docker Images
See list of beautifier Docker images at https://hub.docker.com/u/unibeautify/
Name | Build Status | Pulls | Stars |
---|---|---|---|
autopep8 | |||
beautysh | |||
ClangFormat | |||
Crystal | |||
elm-format | |||
goimports | |||
ocp-indent | |||
php-cs-fixer | |||
phpcbf | |||
puppet-lint | |||
Rscript | |||
rubocop | |||
ruby-beautify | |||
sass-convert | |||
sqlformat | |||
uncrustify |
Installation
Docker is required.
Using Whalebrew
- Install Whalebrew
whalebrew install unibeautify/BEAUTIFIER
e.g.whalebrew install unibeautify/php-cs-fixer
- Profit! You can now run the installed beautifier command.
e.g.php-cs-fixer --version
Manually
- Pull the Docker image:
docker pull unibeautify/BEAUTIFIER
e.g.docker pull unibeautify/php-cs-fixer
- Run the Docker image:
docker run -it -v "$(pwd)":/workdir -w /workdir unibeautify/BEAUTIFIER "--version"
e.g.docker run -it -v "$(pwd)":/workdir -w /workdir unibeautify/php-cs-fixer "--version"