rust-clippy

Build Status

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

Lints

Lints included in this crate:

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

[dependencies] clippy = "*"

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

Usage

Compiler plugins are highly unstable and will only work with a nightly Rust for now. Since stable Rust is backwards compatible, you should be able to compile your stable programs with nightly Rust with clippy plugged in to circumvent this.

Add in your Cargo.toml: toml [dependencies.clippy] git = "https://github.com/Manishearth/rust-clippy"

Sample main.rs: ```rust

![feature(plugin)]

![plugin(clippy)]

fn main(){ let x = Some(1u8); match x { Some(y) => println!("{:?}", y), _ => () } } ```

Produce this warning: src/main.rs:8:5: 11:6 warning: You seem to be trying to use match for destructuring a single type. Did you mean to use `if let`?, #[warn(single_match)] on by default src/main.rs:8 match x { src/main.rs:9 Some(y) => println!("{:?}", y), src/main.rs:10 _ => () src/main.rs:11 } src/main.rs:8:5: 11:6 note: Try if let Some(y) = x { ... } src/main.rs:8 match x { src/main.rs:9 Some(y) => println!("{:?}", y), src/main.rs:10 _ => () src/main.rs:11 }

You can add options to allow/warn/deny: - the whole set using the clippy lint group (#![deny(clippy)], etc) - only some lints (#![deny(single_match, box_vec)], etc) - allow/warn/deny can be limited to a single function or module using #[allow(...)], etc

deny produces error instead of warnings

License

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.