Lines Matching full:clippy
304 // Ignored clippy lints
306 clippy::collapsible_else_if,
307 clippy::comparison_chain,
308 clippy::deprecated_cfg_attr,
309 clippy::doc_markdown,
310 clippy::excessive_precision,
311 clippy::explicit_auto_deref,
312 clippy::float_cmp,
313 clippy::manual_range_contains,
314 clippy::match_like_matches_macro,
315 clippy::match_single_binding,
316 clippy::needless_doctest_main,
317 clippy::needless_late_init,
318 // clippy bug: https://github.com/rust-lang/rust-clippy/issues/8366
319 clippy::ptr_arg,
320 clippy::return_self_not_must_use,
321 clippy::transmute_ptr_to_ptr,
322 clippy::unnecessary_wraps,
323 // clippy bug: https://github.com/rust-lang/rust-clippy/issues/5704
324 clippy::unnested_or_patterns,
329 clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
331 clippy::should_implement_trait,
333 clippy::cast_possible_truncation,
334 clippy::cast_possible_wrap,
335 clippy::cast_precision_loss,
336 clippy::cast_sign_loss,
338 clippy::enum_glob_use,
339 clippy::if_not_else,
340 clippy::integer_division,
341 clippy::map_err_ignore,
342 clippy::match_same_arms,
343 clippy::similar_names,
344 clippy::unused_self,
345 clippy::wildcard_imports,
347 clippy::cast_lossless,
348 clippy::module_name_repetitions,
349 clippy::redundant_else,
350 clippy::shadow_unrelated,
351 clippy::single_match_else,
352 clippy::too_many_lines,
353 clippy::unreadable_literal,
354 clippy::unseparated_literal_suffix,
355 clippy::use_self,
356 clippy::zero_prefixed_literal,
358 clippy::checked_conversions,
359 clippy::mem_replace_with_default,
361 clippy::missing_errors_doc,
362 clippy::must_use_candidate,