| Age | Commit message (Expand) | Author | Lines |
| 2022-08-19 | Move `UnitHash` into `Methods` lint pass | Jason Newcomb | -83/+76 |
| 2022-08-19 | Move `TransmutingNull` into `Transmute` lint pass | Jason Newcomb | -94/+89 |
| 2022-08-19 | Move `StableSortPrimitive` to `Methods` lint pass | Jason Newcomb | -148/+76 |
| 2022-08-19 | Move `RepeatOnce` into `Methods` lint pass | Jason Newcomb | -94/+92 |
| 2022-08-19 | Move `range_zip_with_len` into `Methods` lint pass | Jason Newcomb | -70/+77 |
| 2022-08-19 | Move `PathBufPushOverwrite` into `Methods` lint group | Jason Newcomb | -76/+76 |
| 2022-08-19 | Move `OpenOptions` into `Methods` lint pass | Jason Newcomb | -39/+39 |
| 2022-08-19 | Move `MutMutexLock` into `Methods` lint pass | Jason Newcomb | -75/+74 |
| 2022-08-19 | Move `MapErrIgnore` into `Methods` lint pass | Jason Newcomb | -158/+140 |
| 2022-08-19 | Move `MapClone` into `Methods` lint pass | Jason Newcomb | -173/+159 |
| 2022-08-19 | Move `ManualOkOr` into `Methods` lint pass | Jason Newcomb | -100/+98 |
| 2022-08-19 | Move `GetFirst` into `Methods` lint pass | Jason Newcomb | -75/+76 |
| 2022-08-19 | Move `CaseSensitiveFileExtensionComparisons` into `Methods` lint pass | Jason Newcomb | -91/+77 |
| 2022-08-19 | Move `BytesCountToLen` into `Methods` lint pass | Jason Newcomb | -75/+68 |
| 2022-08-19 | Move `ByteCount` into `Methods` lint pass | Jason Newcomb | -110/+111 |
| 2022-08-19 | Move `BorrowAsPtr` into `Casts` lint pass | Jason Newcomb | -104/+79 |
| 2022-08-19 | Move `AsUnderscore` into `Casts` lint pass | Jason Newcomb | -81/+62 |
| 2022-08-19 | Auto merge of #9295 - Guilherme-Vasconcelos:manual-empty-string-creation, r=d... | bors | -38/+371 |
| 2022-08-18 | Auto merge of #9348 - lukaslueg:issue9347, r=Alexendoo | bors | -1/+31 |
| 2022-08-18 | Dont lint on match pattern-binding | Lukas Lueg | -1/+31 |
| 2022-08-18 | Auto merge of #9136 - smoelius:enhance-needless-borrow, r=Jarcho | bors | -78/+585 |
| 2022-08-17 | Auto merge of #9338 - sgued:9331-unwrap-err-used, r=giraffate | bors | -24/+101 |
| 2022-08-17 | unwrap_used: Fix error message for unwrap_err when expect_used is allowed | Sosthène Guédon | -7/+25 |
| 2022-08-17 | Auto merge of #9287 - Jarcho:trans_undefined, r=xFrednet | bors | -228/+222 |
| 2022-08-17 | Auto merge of #9345 - cherryblossom000:patch-1, r=flip1995 | bors | -1/+1 |
| 2022-08-17 | Auto merge of #9344 - Jarcho:opt_target_dir, r=flip1995 | bors | -2/+6 |
| 2022-08-17 | Fix typo in as_undescore docs | cherryblossom | -1/+1 |
| 2022-08-16 | Handle `CARGO_TARGET_DIR` not being set in compile-test | Jason Newcomb | -2/+6 |
| 2022-08-17 | Auto merge of #9341 - bmc-msft:suggest-map_or-instead-of-unwrap_or, r=giraffate | bors | -2/+1 |
| 2022-08-16 | Fix adjacent code | Samuel E. Moelius III | -25/+26 |
| 2022-08-16 | Enhance `needless_borrow` to consider trait implementations | Samuel E. Moelius III | -53/+559 |
| 2022-08-16 | Auto merge of #9343 - Serial-ATA:compiletest-target-env, r=Manishearth | bors | -1/+2 |
| 2022-08-16 | Use `CARGO_TARGET_DIR` in compile-test | Serial | -1/+2 |
| 2022-08-16 | Auto merge of #9327 - Serial-ATA:non_ascii_literal_macro, r=Alexendoo | bors | -39/+110 |
| 2022-08-16 | suggest map_or in case_sensitive_file_extension_comparisons | Brian Caswell | -2/+1 |
| 2022-08-16 | Fix [`non_ascii_literal`] in tests | Serial | -39/+110 |
| 2022-08-16 | unwrap_used and expect_used: trigger on uses of their _err variants | Sosthène Guédon | -19/+78 |
| 2022-08-16 | Auto merge of #9340 - alex-semenyuk:box_t, r=dswij | bors | -8/+2 |
| 2022-08-16 | Auto merge of #9040 - miam-miam100:unused_named_parameter, r=dswij | bors | -6/+657 |
| 2022-08-16 | Fix example | alexey semenyuk | -8/+2 |
| 2022-08-16 | Auto merge of #9328 - stanislav-tkach:borrow_deref_ref-remove-extra-deref-fro... | bors | -5/+0 |
| 2022-08-15 | Auto merge of #9318 - lukaslueg:ifletmutexref, r=xFrednet | bors | -27/+61 |
| 2022-08-15 | Simplify the borrow_deref_ref lint example | Stanislav Tkach | -5/+0 |
| 2022-08-15 | Fix label not starting with lcase-letter | lukaslueg | -4/+4 |
| 2022-08-15 | Auto merge of #9329 - xphoniex:fix-#9317, r=flip1995 | bors | -2/+71 |
| 2022-08-14 | Skip `unnecessary_to_owned` when `t != t.to_string()` | xphoniex | -2/+71 |
| 2022-08-14 | Update all tests to comply with clippy::manual_empty_string_creations | Guilherme-Vasconcelos | -38/+40 |
| 2022-08-14 | Implement clippy::manual_empty_string_creations lint | Guilherme-Vasconcelos | -1/+332 |
| 2022-08-14 | Auto merge of #9187 - sgued:iter-once, r=flip1995 | bors | -5/+524 |
| 2022-08-14 | Auto merge of #9167 - aldhsu:fix-trait-duplication-false-pos, r=flip1995 | bors | -334/+481 |