rust-clippy

A collection of lints that give helpful tips to newbies and catch oversights.

Lints included in this crate:

To use, add the following lines to your Cargo.toml:

[dev-dependencies.rust-clippy] git = "https://github.com/Manishearth/rust-clippy"

In your code, you may add #![plugin(clippy)] to use it (you may also need to include a #![feature(plugin)] line)

You can allow/warn/deny the whole set using the clippy lint group (#[allow(clippy)], etc)

More to come, please file an issue if you have ideas!

Licensed under MPL. If you're having issues with the license, let me know and I'll try to change it to something more permissive.