index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
clippy_lints
/
src
/
matches
Age
Commit message (
Expand
)
Author
Lines
2025-02-17
`manual_ok_err`: blockify the replacement of an `else if …`
Samuel Tardieu
-2
/
+13
2025-02-09
`let_and_return`: lint more cases in edition ≥ 2024
Samuel Tardieu
-4
/
+2
2025-02-09
make [`manual_map`] ignore types that contain `dyn` (#12712)
Alex Macleod
-13
/
+11
2025-02-07
Simplify `reindent_multiline()` signature (#14101)
Timo
-1
/
+1
2025-02-06
Merge remote-tracking branch 'upstream/master' into rustup
Philipp Krones
-10
/
+2
2025-02-05
move `expr_requires_coercion` to clippy_utils & some other adjustments
J-ZhengLi
-71
/
+3
2025-02-05
fix [`manual_map`] not catching type adjustment
J-ZhengLi
-11
/
+77
2025-02-03
Simplify `reindent_multiline()` signature
Samuel Tardieu
-1
/
+1
2025-02-03
new `manual_option_as_slice` lint (#13901)
Alejandra González
-9
/
+1
2025-02-02
Convert two `rustc_middle::lint` functions to `Span` methods.
Nicholas Nethercote
-2
/
+1
2025-01-29
Eliminate PatKind::Path
Oli Scherer
-37
/
+94
2025-01-28
Merge commit '51d49c1ae2785b24ef18a46ef233fc1d91844666' into clippy-subtree-u...
Philipp Krones
-39
/
+223
2025-01-28
Merge remote-tracking branch 'upstream/master' into rustup
Philipp Krones
-39
/
+223
2025-01-26
new `manual_option_as_slice` lint
Andre Bogus
-9
/
+1
2025-01-22
`match_bool`: fix suggestion if guard is present (#14039)
llogiq
-24
/
+27
2025-01-21
fix: correct suggestion for significant_drop_in_scrutinee in expressions (#14...
Timo
-2
/
+2
2025-01-20
`match_bool`: omit suggestion if guard is present
Samuel Tardieu
-24
/
+27
2025-01-20
Get rid of mir::Const::from_ty_const
Michael Goulet
-5
/
+2
2025-01-19
Apply `unnecessary_semicolon` to Clippy sources
Samuel Tardieu
-9
/
+9
2025-01-17
fix: correct suggestion for significant_drop_in_scrutinee in expressions
Vishruth-Thimmaiah
-2
/
+2
2025-01-11
Do not look for significant drop inside `.await` expansion
Samuel Tardieu
-2
/
+3
2025-01-10
New lint: manual_ok_err (#13740)
Alejandra González
-0
/
+180
2025-01-10
New lint: manual_ok_err
Samuel Tardieu
-0
/
+180
2025-01-09
Merge commit '19e305bb57a7595f2a8d81f521c0dd8bf854e739' into clippy-subtree-u...
Philipp Krones
-9
/
+6
2025-01-09
Merge remote-tracking branch 'upstream/master' into rustup
Philipp Krones
-10
/
+7
2025-01-08
Rename PatKind::Lit to Expr
Oli Scherer
-14
/
+14
2025-01-08
Exhaustively handle expressions in patterns
Oli Scherer
-21
/
+27
2025-01-07
Rollup merge of #134989 - max-niederman:guard-patterns-hir, r=oli-obk
Matthias Krüger
-3
/
+9
2025-01-04
turn hir::ItemKind::Fn into a named-field variant
Ralf Jung
-1
/
+1
2024-12-31
cover guard patterns in clippy lints
Max Niederman
-3
/
+9
2024-12-29
Fix parentheses when replacing `matches!(…, None)` with `.is_none()`
Samuel Tardieu
-3
/
+5
2024-12-27
remove description of known problems in `match_same_arms` that have already b...
Fridtjof Stoldt
-5
/
+0
2024-12-26
Merge commit '609cd310be44677ae31d452a17b0f8207e1abfe1' into clippy-subtree-u...
Philipp Krones
-17
/
+38
2024-12-26
Merge remote-tracking branch 'upstream/master' into rustup
Philipp Krones
-17
/
+38
2024-12-24
remove known problems section from match_same_arms
lapla-cogito
-5
/
+0
2024-12-15
Add hir::Attribute
Jonathan Dönszelmann
-2
/
+2
2024-12-15
chore: use multipart_suggestions for match_same_arms (#13803)
Alejandra González
-12
/
+8
2024-12-15
Merge remote-tracking branch 'upstream/master' into rustup
Philipp Krones
-5
/
+30
2024-12-14
address wrong suggestions when using comparing with byte literal string in si...
lapla-cogito
-1
/
+1
2024-12-13
Fix `single_match` lint being emitted when it should not (#13765)
llogiq
-2
/
+25
2024-12-13
Fix `single_match` lint being emitted when it should not
Guillaume Gomez
-2
/
+25
2024-12-09
chore: use multipart_suggestions for match_same_arms
Scott Gerring
-12
/
+8
2024-12-02
Fix needless_match FP on if-lets (#13646)
Catherine Flores
-2
/
+4
2024-11-30
Eliminate magic numbers from expression precedence
David Tolnay
-2
/
+2
2024-11-28
Merge commit 'ff4a26d442bead94a4c96fb1de967374bc4fbd8e' into clippy-subtree-u...
Philipp Krones
-12
/
+6
2024-11-28
Merge remote-tracking branch 'upstream/master' into rustup
Philipp Krones
-12
/
+6
2024-11-18
Handle `Option::map_or(true, …)` in `unnecessary_map_or` lint (#13653)
Catherine Flores
-3
/
+2
2024-11-17
Inline ExprPrecedence::order into Expr::precedence
David Tolnay
-1
/
+1
2024-11-17
Don't lint CStr literals, do lint float literals in `redundant_guards` (#13698)
Catherine Flores
-6
/
+1
2024-11-17
`redundant_guards`: lint float literals, don't lint cstr literals
y21
-6
/
+1
[next]