Sign inSign up

cytopia/goimports

By cytopia

•Updated over 3 years ago

Alpine-based multistage-build version of goimports for reproducible usage in CI

Image
2

100K+

cytopia/goimports repository overview

⁠Docker image for goimports

Tag License

lint build nightly

View Dockerfiles⁠ on GitHub.

Available Architectures: amd64, i386, arm64, arm/v7

Tiny Alpine-based multistage-build dockerized version of goimports⁠[1], which adds the additional --ci argument[2] via a shell wrapper to ensure to exit > 0 if file diffs occur. The image is built nightly against multiple stable versions and pushed to Dockerhub.

⁠:whale: Available Docker image versions

Docker

⁠Rolling releaess

The following Docker image tags are rolling releases and are built and updated every night.

nightly

Docker TagGit RefgoimportsAvailable Architectures
latestmasterlatestamd64, i386, arm64, arm/v7
⁠Point in time releases

The following Docker image tags are built once and can be used for reproducible builds. Its version never changes so you will have to update tags in your pipelines from time to time in order to stay up-to-date.

build

Docker TagGit RefgoimportsAvailable Architectures
latest-<tag>tag: <tag>latestamd64, i386, arm64, arm/v7

Where <tag> refers to the chosen git tag from this repository.

⁠:open_file_folder: Docker mounts

The working directory inside the Docker container is /data/ and should be mounted locally to the root of your project.

⁠:computer: Usage

⁠General
$ docker run --rm cytopia/goimports --help

Usage: cytopia/goimports [flags] [path...]
       cytopia/goimports [--ci] [-local] [-srcdir] [path...]
       cytopia/goimports --help

Dockerized version of goimports with an addition to fail (exit 1) in case of file changes.

Additional wrapper features:
----------------------------
 --ci   This option will print the diff to stdout (similar to '-d') and if a diff
        exists it will fail with exit 1.
        Can only be combined with '-e', '-local' and '-srcdir'.
        To be used in continuous integration with explicit failing.

Default goimports flages:
----------------------------
 -cpuprofile string
        CPU profile output
 -d     display diffs instead of rewriting files
 -e     report all errors (not just the first 10 on different lines)
 -format-only
        if true, don't fix imports and only format. In this mode, goimports is
        effectively goimports, with the addition that imports are grouped into sections.
 -l     list files whose formatting differs from goimport's
 -local string
        put imports beginning with this string after 3rd-party packages; comma-separated list
 -memprofile string
        memory profile output
 -memrate int
        if > 0, sets runtime.MemProfileRate
 -srcdir dir
        choose imports as if source code is from dir. When operating on a single file,
        dir may instead be the complete file name.
 -trace string
        trace profile output
 -v     verbose logging
 -w     write result to (source) file instead of stdout
⁠Default goimports usage
# Print diff to stdout and exit 0
$ docker run --rm -v $(pwd):/data cytopia/goimports -d .
⁠CI wrapper usage
# Print diff to stdout and exit > 0 if diff occurs
$ docker run --rm -v $(pwd):/data cytopia/goimports --ci .
⁠Docker images

Save yourself from installing lot's of dependencies and pick a dockerized version of your favourite linter below for reproducible local or remote CI tests:

GitHubDockerHubTypeDescription
awesome-ci⁠aci-hub-imgBasicTools for git, file and static source code analysis
file-lint⁠flint-hub-imgBasicBaisc source code analysis
linkcheck⁠linkcheck-hub-imgBasicSearch for URLs in files and validate their HTTP status code
ansible⁠ansible-hub-imgAnsibleMultiple versions and flavours of Ansible
ansible-lint⁠alint-hub-imgAnsibleLint Ansible
gofmt⁠gfmt-hub-imgGoFormat Go source code [1]
goimports⁠gimp-hub-imgGoFormat Go source code [1]
golint⁠glint-hub-imgGoLint Go code
eslint⁠elint-hub-imgJavascriptLint Javascript code
jsonlint⁠jlint-hub-imgJSONLint JSON files [1]
kubeval⁠kubeval-hub-imgK8sLint Kubernetes files
checkmake⁠cm-hub-imgMakeLint Makefiles
phpcbf⁠pcbf-hub-imgPHPPHP Code Beautifier and Fixer
phpcs⁠pcs-hub-imgPHPPHP Code Sniffer
phplint⁠plint-hub-imgPHPPHP Code Linter [1]
php-cs-fixer⁠pcsf-hub-imgPHPPHP Coding Standards Fixer
bandit⁠bandit-hub-imgPythonA security linter from PyCQA
black⁠black-hub-imgPythonThe uncompromising Python code formatter
mypy⁠mypy-hub-imgPythonStatic source code analysis
pycodestyle⁠pycs-hub-imgPythonPython style guide checker
pydocstyle⁠pyds-hub-imgPythonPython docstyle checker
pylint⁠pylint-hub-imgPythonPython source code, bug and quality checker
terraform-docs⁠tfdocs-hub-imgTerraformTerraform doc generator (TF 0.12 ready) [1]
terragrunt⁠tg-hub-imgTerraformTerragrunt and Terraform
terragrunt-fmt⁠tgfmt-hub-imgTerraformterraform fmt for Terragrunt files [1]
yamlfmt⁠yfmt-hub-imgYamlFormat Yaml files [1]
yamllint⁠ylint-hub-imgYamlLint Yaml files

[1] Uses a shell wrapper to add enhanced functionality not available by original project.

⁠Makefiles

Visit cytopia/makefiles⁠ for dependency-less, seamless project integration and minimum required best-practice code linting for CI. The provided Makefiles will only require GNU Make and Docker itself removing the need to install anything else.

⁠:page_facing_up: License

MIT License⁠

Copyright (c) 2019 cytopia⁠

Tag summary

Content type

Image

Digest

sha256:e645bee81…

Size

150.9 MB

Last updated

over 3 years ago

docker pull cytopia/goimports