Skip to content

Issues: rust-lang/rust-clippy

Most commonly ignored lints on crates.io
#7666 by dtolnay was closed Oct 9, 2022
Closed 23
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
Filter by author
Loading
Label
Filter by label
Loading
Use alt + click/return to exclude labels
or + click/return for logical OR
Projects
Filter by project
Loading
Milestones
Filter by milestone
Loading
Assignee
Filter by who’s assigned
Assigned to nobody Loading
Sort

Issues list

Lint suggestion: Accidentally acquiring lock which is already held A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group
#10575 opened Mar 30, 2023 by tkaitchuck
Fix in clippy::unchecked_duration_subtraction produces unclearer panic C-bug Category: Clippy is not doing the correct thing C-enhancement Category: Enhancement of lints, like adding more cases or adding help messages C-question Category: Questions I-false-positive Issue: The lint was triggered on code it shouldn't have L-correctness Lint: Belongs in the correctness lint group L-suggestion Lint: Improving, adding or fixing lint suggestions
#10061 opened Dec 10, 2022 by umgefahren
New lint: Unused temporary variable A-lint Area: New lints E-hard Call for participation: This a hard problem and requires more experience or effort to work on L-correctness Lint: Belongs in the correctness lint group
#5880 opened Aug 9, 2020 by jamesmcm
Warn against passing a pointer derived from a 0 or 1 sized array to from_raw_parts A-lint Area: New lints E-medium Call for participation: Medium difficulty level problem and requires some initial experience. L-correctness Lint: Belongs in the correctness lint group
#5591 opened May 12, 2020 by retep998
Generic framework for detecting mis-use of C-APIs with init functions A-lint Area: New lints C-question Category: Questions L-correctness Lint: Belongs in the correctness lint group
#4904 opened Dec 15, 2019 by oli-obk
Lint leaky Drop impls that do nothing but drop items in a loop A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group
#4899 opened Dec 13, 2019 by jonas-schievink
New lint: casting &mut T to &mut MaybeUninit<T> and exposing it as safe A-lint Area: New lints E-medium Call for participation: Medium difficulty level problem and requires some initial experience. L-correctness Lint: Belongs in the correctness lint group
#4896 opened Dec 11, 2019 by Kixunil
Lint for locals living through yield points even though they're not used anymore A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group T-async-await Type: Issues related to async/await
#4893 opened Dec 10, 2019 by nayato
New lint: mutating implicit copy of const A-lint Area: New lints E-medium Call for participation: Medium difficulty level problem and requires some initial experience. L-correctness Lint: Belongs in the correctness lint group
#4882 opened Dec 5, 2019 by ExoticMatter
New lint: Unnecessary use of std::ptr::{copy,copy_nonoverlapping} with slices A-lint Area: New lints E-medium Call for participation: Medium difficulty level problem and requires some initial experience. L-correctness Lint: Belongs in the correctness lint group
#4862 opened Nov 29, 2019 by nicoonoclaste
Lint using blocks in compound expression operators A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group
#4756 opened Oct 30, 2019 by Aaron1011
Compare equal operands C-enhancement Category: Enhancement of lints, like adding more cases or adding help messages L-correctness Lint: Belongs in the correctness lint group
#4656 opened Oct 11, 2019 by kpp
New lint: while let Some(&x) = slice.iter().next() is infinite loop A-lint Area: New lints good first issue These issues are a good way to get started with Clippy L-correctness Lint: Belongs in the correctness lint group L-suggestion Lint: Improving, adding or fixing lint suggestions
#4554 opened Sep 19, 2019 by tesuji
Warn about Mutex<()> A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group
#4471 opened Aug 29, 2019 by oli-cosmian
Lint suggestion: write to raw pointer with drop glue A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group
#4294 opened Jul 22, 2019 by RalfJung
Warn if 'nonstandard Clone' used in vec! A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group
#4288 opened Jul 20, 2019 by ralfbiedert
Lint static mut FOO: T where T has a safe counterpart A-lint Area: New lints good first issue These issues are a good way to get started with Clippy L-correctness Lint: Belongs in the correctness lint group
#4070 opened May 8, 2019 by oli-obk
lint Hash impls with matches on enums but no mem::discriminant call A-lint Area: New lints E-medium Call for participation: Medium difficulty level problem and requires some initial experience. L-correctness Lint: Belongs in the correctness lint group T-middle Type: Probably requires verifiying types
#4067 opened May 7, 2019 by oli-obk
Lint variable only ever assigned a single value A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group T-MIR Type: This lint will require working with the MIR
#4016 opened Apr 22, 2019 by oli-obk
Catch basic array bounds errors A-lint Area: New lints E-hard Call for participation: This a hard problem and requires more experience or effort to work on L-correctness Lint: Belongs in the correctness lint group T-MIR Type: This lint will require working with the MIR
#3771 opened Feb 16, 2019 by leonardo-m
Lint trait impls whose body accesses self.field instead of let Self { field } = self A-lint Area: New lints E-medium Call for participation: Medium difficulty level problem and requires some initial experience. L-complexity Lint: Belongs in the complexity lint group L-correctness Lint: Belongs in the correctness lint group
#3724 opened Jan 30, 2019 by oli-obk
Lint request: deny_mmx_target_feature A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group T-MIR Type: This lint will require working with the MIR
#3722 opened Jan 30, 2019 by gnzlbg
Lint x != a || x != b A-lint Area: New lints L-correctness Lint: Belongs in the correctness lint group
#3715 opened Jan 29, 2019 by baumanj
Cast_ptr_alignment false negative in trait method default impl C-enhancement Category: Enhancement of lints, like adding more cases or adding help messages I-false-negative Issue: The lint should have been triggered on code, but wasn't L-correctness Lint: Belongs in the correctness lint group
#3440 opened Nov 21, 2018 by dtolnay
New lint: SIMD paths without the respective #[cfg(..)]s A-lint Area: New lints E-medium Call for participation: Medium difficulty level problem and requires some initial experience. L-correctness Lint: Belongs in the correctness lint group L-perf Lint: Belongs in the perf lint group
#3162 opened Sep 10, 2018 by llogiq
ProTip! Add no:assignee to see everything that’s not assigned.