|
794 | 794 | "name": "Searches for implementations of the `Into<..>` trait and suggests to implement `From<..>` instead.", |
795 | 795 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#from_over_into" |
796 | 796 | }, |
| 797 | + { |
| 798 | + "key": "clippy::from_raw_with_void_ptr", |
| 799 | + "name": "Checks if we're passing a `c_void` raw pointer to `{Box,Rc,Arc,Weak}::from_raw(_)`", |
| 800 | + "url": "https://rust-lang.github.io/rust-clippy/master/index.html#from_raw_with_void_ptr" |
| 801 | + }, |
797 | 802 | { |
798 | 803 | "key": "clippy::from_str_radix_10", |
799 | 804 | "name": "Checks for function invocations of the form `primitive::from_str_radix(s, 10)`", |
|
1134 | 1139 | "name": "Checks for `let`-bindings, which are subsequently returned.", |
1135 | 1140 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return" |
1136 | 1141 | }, |
1137 | | - { |
1138 | | - "key": "clippy::let_underscore_drop", |
1139 | | - "name": "Checks for `let _ = <expr>` where expr has a type that implements `Drop`", |
1140 | | - "url": "https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_drop" |
1141 | | - }, |
1142 | 1142 | { |
1143 | 1143 | "key": "clippy::let_underscore_lock", |
1144 | | - "name": "Checks for `let _ = sync_lock`. This supports `mutex` and `rwlock` in `std::sync` and `parking_lot`.", |
| 1144 | + "name": "Checks for `let _ = sync_lock`. This supports `mutex` and `rwlock` in `parking_lot`. For `std` locks", |
1145 | 1145 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_lock" |
1146 | 1146 | }, |
1147 | 1147 | { |
|
1224 | 1224 | "name": "Lints subtraction between `Instant::now()` and another `Instant`.", |
1225 | 1225 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#manual_instant_elapsed" |
1226 | 1226 | }, |
| 1227 | + { |
| 1228 | + "key": "clippy::manual_let_else", |
| 1229 | + "name": "Warn of cases where `let...else` could be used", |
| 1230 | + "url": "https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else" |
| 1231 | + }, |
1227 | 1232 | { |
1228 | 1233 | "key": "clippy::manual_map", |
1229 | 1234 | "name": "Checks for usages of `match` which could be implemented using `map`", |
|
2144 | 2149 | "name": "Checks for an iterator or string search (such as `find()`, `position()`, or `rposition()`) followed", |
2145 | 2150 | "url": "https://rust-lang.github.io/rust-clippy/master/index.html#search_is_some" |
2146 | 2151 | }, |
| 2152 | + { |
| 2153 | + "key": "clippy::seek_from_current", |
| 2154 | + "name": "Checks an argument of `seek` method of `Seek` trait and if it start seek from `SeekFrom::Current(0)", |
| 2155 | + "url": "https://rust-lang.github.io/rust-clippy/master/index.html#seek_from_current" |
| 2156 | + }, |
| 2157 | + { |
| 2158 | + "key": "clippy::seek_to_start_instead_of_rewind", |
| 2159 | + "name": "Checks for jumps to the start of a stream that implements `Seek` and uses the `seek` method providi", |
| 2160 | + "url": "https://rust-lang.github.io/rust-clippy/master/index.html#seek_to_start_instead_of_rewind" |
| 2161 | + }, |
2147 | 2162 | { |
2148 | 2163 | "key": "clippy::self_assignment", |
2149 | 2164 | "name": "Checks for explicit self-assignments.", |
|
0 commit comments