-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Issues: rust-lang/rust-clippy
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Author
Label
Projects
Milestones
Assignee
Sort
Issues list
Lint against patterns like Area: New lints
<Result<_,_> as anyhow::Context>::context(r, &format!("...", ...))
in favor of .with_context(|| ...)
A-lint
#13678
opened Nov 12, 2024 by
anp
A lint for diverging expressions in else-case to encourage early retuns (and similar)
A-lint
Area: New lints
#13674
opened Nov 10, 2024 by
porky11
Option::as_mut
followed by Option::take
is a foot-gun
A-lint
#13671
opened Nov 9, 2024 by
thomaseizinger
new_without_default could include blanket impls
A-lint
Area: New lints
#13668
opened Nov 9, 2024 by
CGamesPlay
Suggest Area: New lints
cast_const()
for *mut
to *const
coercions (similar to ptr_cast_constness
)
A-lint
#13667
opened Nov 8, 2024 by
ojeda
Detect Area: New lints
:emoji:
in documentation and suggest using Unicode emoji directly
A-lint
#13666
opened Nov 8, 2024 by
joshtriplett
Make unreadable_literal useful even when we use numbers with two decimals
A-lint
Area: New lints
#13663
opened Nov 7, 2024 by
frederikhors
Unused format string literals (string interpolation)
A-lint
Area: New lints
#13651
opened Nov 4, 2024 by
alice-i-cecile
Prefer Area: New lints
Display
over Debug
formatting
A-lint
#13621
opened Oct 28, 2024 by
BenjaminBrienen
Unneeded Area: New lints
rust
as language in rustdoc
's documentation examples
A-lint
#13604
opened Oct 25, 2024 by
ojeda
Overindented lines lint (similar to Area: New lints
doc_lazy_continuation
)
A-lint
#13601
opened Oct 24, 2024 by
ojeda
New Area: New lints
inline_test_mod
lint to encouage independent test.rs
files for rebuild performance
A-lint
#13589
opened Oct 23, 2024 by
epage
Prefer Area: New lints
vec.truncate(x)
over vec.drain(x..)
A-lint
#13580
opened Oct 22, 2024 by
Kither12
Suggest to replace Area: New lints
if xxx { Some(yyy) } else {None}
with (xxx).then(|| yyy)
A-lint
#13575
opened Oct 21, 2024 by
mat813
unsafe extern
support (undocumented_unsafe_blocks
?)
A-lint
#13560
opened Oct 18, 2024 by
ojeda
lint agains using Area: New lints
pub(crate)
in the crate root
A-lint
#13498
opened Oct 4, 2024 by
lolbinarycat
Suggest Area: New lints
#[expect(...)]
instead of #[allow(...)]
to ensure relevance
A-lint
#13491
opened Oct 2, 2024 by
nyurik
Suggest to replace Area: New lints
Option.into_iter().filter_map(func).next()
with Option.and_then(func)
A-lint
#13488
opened Oct 2, 2024 by
bnjbvr
Warn for mem::transmute of no repr(C) structs
A-lint
Area: New lints
#13483
opened Oct 1, 2024 by
leonardo-m
Previous Next
ProTip!
no:milestone will show everything without a milestone.