|
361 | 361 | }, |
362 | 362 | { |
363 | 363 | "key": "clippy::dbg_macro", |
364 | | - "name": "Checks for usage of dbg!() macro.", |
| 364 | + "name": "Checks for usage of the [`dbg!`](https://doc.rust-lang.org/std/macro.dbg.html) macro.", |
365 | 365 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#dbg_macro" |
366 | 366 | }, |
367 | 367 | { |
|
424 | 424 | "name": "Detects manual `std::default::Default` implementations that are identical to a derived implementatio", |
425 | 425 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls" |
426 | 426 | }, |
427 | | - { |
428 | | - "key": "clippy::derive_hash_xor_eq", |
429 | | - "name": "Checks for deriving `Hash` but implementing `PartialEq` explicitly or vice versa.", |
430 | | - "url": "https://rust-lang.github.io/rust-clippy/master/index.html#derive_hash_xor_eq" |
431 | | - }, |
432 | 427 | { |
433 | 428 | "key": "clippy::derive_ord_xor_partial_ord", |
434 | 429 | "name": "Checks for deriving `Ord` but implementing `PartialOrd` explicitly or vice versa.", |
|
439 | 434 | "name": "Checks for types that derive `PartialEq` and could implement `Eq`.", |
440 | 435 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq" |
441 | 436 | }, |
| 437 | + { |
| 438 | + "key": "clippy::derived_hash_with_manual_eq", |
| 439 | + "name": "Checks for deriving `Hash` but implementing `PartialEq` explicitly or vice versa.", |
| 440 | + "url": "https://rust-lang.github.io/rust-clippy/master/index.html#derived_hash_with_manual_eq" |
| 441 | + }, |
442 | 442 | { |
443 | 443 | "key": "clippy::disallowed_macros", |
444 | 444 | "name": "Denies the configured macros in clippy.toml Note: Even though this lint is warn-by-default, it will", |
|
669 | 669 | "name": "Checks for lifetimes in generics that are never used anywhere else.", |
670 | 670 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes" |
671 | 671 | }, |
| 672 | + { |
| 673 | + "key": "clippy::extra_unused_type_parameters", |
| 674 | + "name": "Checks for type parameters in generics that are never used anywhere else.", |
| 675 | + "url": "https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters" |
| 676 | + }, |
672 | 677 | { |
673 | 678 | "key": "clippy::fallible_impl_from", |
674 | 679 | "name": "Checks for impls of `From<..>` that contain `panic!()` or `unwrap()`", |
|
1564 | 1569 | "name": "Checks for multiple inherent implementations of a struct", |
1565 | 1570 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#multiple_inherent_impl" |
1566 | 1571 | }, |
| 1572 | + { |
| 1573 | + "key": "clippy::multiple_unsafe_ops_per_block", |
| 1574 | + "name": "Checks for `unsafe` blocks that contain more than one unsafe operation.", |
| 1575 | + "url": "https://rust-lang.github.io/rust-clippy/master/index.html#multiple_unsafe_ops_per_block" |
| 1576 | + }, |
1567 | 1577 | { |
1568 | 1578 | "key": "clippy::must_use_candidate", |
1569 | 1579 | "name": "Checks for public functions that have no `#[must_use]` attribute, but return something not already m", |
|
2151 | 2161 | }, |
2152 | 2162 | { |
2153 | 2163 | "key": "clippy::reversed_empty_ranges", |
2154 | | - "name": "Checks for range expressions `x..y` where both `x` and `y` are constant and `x` is greater or equal", |
| 2164 | + "name": "Checks for range expressions `x..y` where both `x` and `y` are constant and `x` is greater to `y`. A", |
2155 | 2165 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#reversed_empty_ranges" |
2156 | 2166 | }, |
2157 | 2167 | { |
|
2394 | 2404 | "name": "Checks for use of the non-existent `=*`, `=!` and `=-` operators.", |
2395 | 2405 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_assignment_formatting" |
2396 | 2406 | }, |
| 2407 | + { |
| 2408 | + "key": "clippy::suspicious_command_arg_space", |
| 2409 | + "name": "Checks for `Command::arg()` invocations that look like they should be multiple arguments instead, s", |
| 2410 | + "url": "https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_command_arg_space" |
| 2411 | + }, |
2397 | 2412 | { |
2398 | 2413 | "key": "clippy::suspicious_else_formatting", |
2399 | 2414 | "name": "Checks for formatting of `else`. It lints if the `else` is followed immediately by a newline or the", |
|
0 commit comments