Rust Clippy Lints
July 2022
I’ve been learning and practicing Rust since the end of 2021. I decided to start contributing to Rust itself as a way to learn more about how Rust works, and to help make it better.
A few of my contributions to Clippy, the Rust linter:
mismatching_type_param_order
: checks if type parameters are consistent between type definitions andimpl
blocks.obfuscated_if_else
: checks for lines which could be more clearly written usingif..else..