rust/clippy_lints/src
Michael Wright e6747df5cd Fix lint register code format
Also change the generation functions to return `String` instead of
`Vec<String>`. This makes sense now as the updates aren't line oriented
anymore.
2021-09-29 05:46:39 +02:00
..
casts
functions
loops
methods
misc_early
transmute
types
unit_types
utils Cleanup of rustup changes 2021-09-28 17:40:06 +01:00
absurd_extreme_comparisons.rs
approx_const.rs
arithmetic.rs
as_conversions.rs
asm_syntax.rs
assertions_on_constants.rs
assign_ops.rs
async_yields_async.rs
attrs.rs
await_holding_invalid.rs Fix typo ("asynx" corrected to "async") 2021-09-28 17:53:12 -03:00
bit_mask.rs
blacklisted_name.rs
blocks_in_if_conditions.rs
bool_assert_comparison.rs
booleans.rs
bytecount.rs
cargo_common_metadata.rs
case_sensitive_file_extension_comparisons.rs
checked_conversions.rs
cognitive_complexity.rs
collapsible_if.rs
collapsible_match.rs
comparison_chain.rs
copies.rs
copy_iterator.rs
create_dir.rs
dbg_macro.rs
default_numeric_fallback.rs
default.rs
deprecated_lints.rs
dereference.rs
derivable_impls.rs
derive.rs
disallowed_method.rs
disallowed_script_idents.rs
disallowed_type.rs
doc.rs Auto merge of #7734 - Manishearth:doc-unsafe-trait, r=camsteffen 2021-09-28 17:09:34 +00:00
double_comparison.rs
double_parens.rs
drop_forget_ref.rs
duration_subsec.rs
else_if_without_else.rs
empty_enum.rs
entry.rs
enum_clike.rs
enum_variants.rs
eq_op.rs
erasing_op.rs
escape.rs
eta_reduction.rs
eval_order_dependence.rs
excessive_bools.rs
exhaustive_items.rs
exit.rs
explicit_write.rs
fallible_impl_from.rs
feature_name.rs
float_equality_without_abs.rs
float_literal.rs
floating_point_arithmetic.rs
format.rs
formatting.rs
from_over_into.rs
from_str_radix_10.rs
future_not_send.rs
get_last_with_len.rs
identity_op.rs
if_let_mutex.rs
if_not_else.rs
if_then_panic.rs
if_then_some_else_none.rs
implicit_hasher.rs
implicit_return.rs
implicit_saturating_sub.rs
inconsistent_struct_constructor.rs
indexing_slicing.rs
infinite_iter.rs
inherent_impl.rs
inherent_to_string.rs
inline_fn_without_body.rs
int_plus_one.rs
integer_division.rs
invalid_upcast_comparisons.rs
items_after_statements.rs
iter_not_returning_iterator.rs
large_const_arrays.rs
large_enum_variant.rs
large_stack_arrays.rs
len_zero.rs
let_if_seq.rs
let_underscore.rs
lib.deprecated.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.mods.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_all.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_cargo.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_complexity.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_correctness.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_internal.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_lints.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_nursery.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_pedantic.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_perf.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_restriction.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_style.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.register_suspicious.rs Fix lint register code format 2021-09-29 05:46:39 +02:00
lib.rs Move code generated by update_lints to includes 2021-09-29 05:43:25 +02:00
lifetimes.rs
literal_representation.rs
macro_use.rs
main_recursion.rs
manual_async_fn.rs
manual_map.rs
manual_non_exhaustive.rs
manual_ok_or.rs
manual_strip.rs
manual_unwrap_or.rs
map_clone.rs
map_err_ignore.rs
map_unit_fn.rs
match_on_vec_items.rs
match_result_ok.rs
matches.rs
mem_discriminant.rs
mem_forget.rs
mem_replace.rs
minmax.rs
misc.rs
missing_const_for_fn.rs
missing_doc.rs
missing_enforced_import_rename.rs
missing_inline.rs
module_style.rs
modulo_arithmetic.rs
multiple_crate_versions.rs
mut_key.rs
mut_mut.rs
mut_mutex_lock.rs
mut_reference.rs
mutable_debug_assertion.rs
mutex_atomic.rs
needless_arbitrary_self_type.rs
needless_bitwise_bool.rs
needless_bool.rs
needless_borrow.rs
needless_borrowed_ref.rs
needless_continue.rs
needless_for_each.rs
needless_option_as_deref.rs
needless_pass_by_value.rs
needless_question_mark.rs
needless_update.rs
neg_cmp_op_on_partial_ord.rs
neg_multiply.rs
new_without_default.rs
no_effect.rs
non_copy_const.rs
non_expressive_names.rs
non_octal_unix_permissions.rs
nonstandard_macro_braces.rs
open_options.rs
option_env_unwrap.rs
option_if_let_else.rs
overflow_check_conditional.rs
panic_in_result_fn.rs
panic_unimplemented.rs
partialeq_ne_impl.rs
pass_by_ref_or_value.rs
path_buf_push_overwrite.rs
pattern_type_mismatch.rs
precedence.rs
ptr_eq.rs
ptr_offset_with_cast.rs
ptr.rs
question_mark.rs
ranges.rs
redundant_clone.rs
redundant_closure_call.rs
redundant_else.rs
redundant_field_names.rs
redundant_pub_crate.rs
redundant_slicing.rs
redundant_static_lifetimes.rs
ref_option_ref.rs
reference.rs
regex.rs Cleanup of rustup changes 2021-09-28 17:40:06 +01:00
repeat_once.rs
returns.rs
same_name_method.rs
self_assignment.rs
self_named_constructors.rs
semicolon_if_nothing_returned.rs
serde_api.rs
shadow.rs
single_component_path_imports.rs
size_of_in_element_count.rs
slow_vector_initialization.rs
stable_sort_primitive.rs
strings.rs
strlen_on_c_strings.rs
suspicious_operation_groupings.rs
suspicious_trait_impl.rs
swap.rs
tabs_in_doc_comments.rs
temporary_assignment.rs
to_digit_is_some.rs
to_string_in_display.rs
trait_bounds.rs
transmuting_null.rs
try_err.rs
undropped_manually_drops.rs
unicode.rs
unit_return_expecting_ord.rs
unnamed_address.rs
unnecessary_self_imports.rs
unnecessary_sort_by.rs
unnecessary_wraps.rs
unnested_or_patterns.rs
unsafe_removed_from_name.rs
unused_async.rs
unused_io_amount.rs
unused_self.rs
unused_unit.rs
unwrap_in_result.rs
unwrap.rs
upper_case_acronyms.rs
use_self.rs
useless_conversion.rs
vec_init_then_push.rs
vec_resize_to_zero.rs
vec.rs
verbose_file_reads.rs
wildcard_dependencies.rs
wildcard_imports.rs
write.rs
zero_div_zero.rs
zero_sized_map_values.rs