-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
C-an-interesting-projectCategory: Interesting projects, that usually are more involved design/code wise.Category: Interesting projects, that usually are more involved design/code wise.S-triageStatus: PR was triaged and is waiting for an action from a maintainer (closing/moving/... the PR)Status: PR was triaged and is waiting for an action from a maintainer (closing/moving/... the PR)
Milestone
Description
A few lints I noticed which may be redundant to newer lints in rustc upstream:
absurd_extreme_comparisons
should be uplifted to the existingunused_comparisons
bad_bit_mask
should probably be uplifted to the existingunused_comparisons
lint, or anunused_bitmask
lintbool_comparison
should probably be uplifted tounused_comparisons
cmp_nan
should probably be again uplifted tounused_comparisons
eq_op
should probably be again uplifted tounused_comparisons
unused_collect
should be replaced by the existingmust_use
oncollect
useless_attribute
should be replaced byunused_attribute
out_of_bounds_indexing
should be a const eval erroriterator_step_by_zero
should be removed; this now panicsenum_clike_unportable_variant
should be part of a compiler portability lint
(will make larger list when I get around to it)
Metadata
Metadata
Assignees
Labels
C-an-interesting-projectCategory: Interesting projects, that usually are more involved design/code wise.Category: Interesting projects, that usually are more involved design/code wise.S-triageStatus: PR was triaged and is waiting for an action from a maintainer (closing/moving/... the PR)Status: PR was triaged and is waiting for an action from a maintainer (closing/moving/... the PR)