Skip to content
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.

[Closed] clippy (Rust linter) Docker image

License

Notifications You must be signed in to change notification settings

instrumentisto/clippy-docker-image

Repository files navigation

clippy (Rust linter) Docker image

GitHub release Build Status Docker Pulls

Status

PROJECT IS CLOSED AND ARCHIVED. NO MAINTAINING WILL BE CONTINUED.

Use rustup add component clippy instead.

What is clippy?

clippy is a collection of lints to catch common mistakes and improve your Rust code.

rust-lang-nursery.github.io/rust-clippy

github.com/rust-lang-nursery/rust-clippy

How to use this image

Mount your project, and run cargo clippy:

docker run --rm -v "$(pwd)":/app -w /app instrumentisto/clippy

Specify additional clippy options if you require:

docker run --rm -v "$(pwd)":/app -w /app \
    instrumentisto/clippy -- -Dclippy -Wclippy_pedantic

OpenSSL

As Rust crates ecosystem depends on OpenSSL quite hard at the moment, this image contains OpenSSL libs and sources pre-installed, so you can "just lint" your project without worrying about installing OpenSSL libs.

Image versions

latest

Latest version of clippy.

X

Latest version of clippy X branch.

X.Y

Latest version of clippy X.Y branch.

X.Y.Z

Concrete X.Y.Z version of clippy.

License

clippy itself is licensed under MPL 2.0 license.

clippy Docker image is licensed under MIT license.

Issues

We can't notice comments in the DockerHub, so don't use them for reporting issue or asking question.

If you have any problems with or questions about this image, please contact us through a GitHub issue.