rust/clippy_lints
Samuel Tardieu d1c315a288 missing_asserts_for_indexing: consider assert_eq!() as well
`assert_eq!()` and `assert_ne!()` are not expanded the same way as
`assert!()` (they use a `match` instead of a `if`). This makes them
being recognized as well.
2025-04-06 12:56:12 +02:00
..
src missing_asserts_for_indexing: consider assert_eq!() as well 2025-04-06 12:56:12 +02:00
Cargo.toml Bump Clippy version -> 0.1.88 2025-04-03 21:32:37 +02:00
README.md clippy_lints: readme: don't mention crates.io since it is no longer used to publish clippy. 2020-03-10 01:05:54 +01:00

This crate contains Clippy lints. For the main crate, check GitHub.