rust-clippy
https://github.com/rust-lang/rust-clippy
Rust
A bunch of lints to catch common mistakes and improve your Rust code. Book: https://doc.rust-lang.org/clippy/
Triage Issues!
When you volunteer to triage issues, you'll receive an email each day with a link to an open issue that needs help in this project. You'll also receive instructions on how to triage issues.
Triage Docs!
Receive a documented method or class from your favorite GitHub repos in your inbox every day. If you're really pro, receive undocumented methods or classes and supercharge your commit history.
Rust not yet supported23 Subscribers
Add a CodeTriage badge to rust-clippy
Help out
- Issues
- Configure clippy lints further with the `[lints]` table.
- Suggest to replace `int_as_float.log{|2|10}().floor() as u32` with `int.ilog{|2|10}()`
- Detect use of unnecessary `dyn` in function parameter
- Manually allow `clippy::await_holding_invalid_type`
- Lint against patterns like `<Result<_,_> as anyhow::Context>::context(r, &format!("...", ...))` in favor of `.with_context(|| ...)`
- redundant_pub_crate conflicts with pub use mod::*
- A lint for diverging expressions in else-case to encourage early retuns (and similar)
- new_without_default could include blanket impls
- Detect `:emoji:` in documentation and suggest using Unicode emoji directly
- Suggest `cast_const()` for `*mut` to `*const` coercions (similar to `ptr_cast_constness`)
- Docs
- Rust not yet supported