]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/lib.rs
Rename function
[rust.git] / clippy_lints / src / lib.rs
1 // error-pattern:cargo-clippy
2
3 #![feature(bindings_after_at)]
4 #![feature(box_patterns)]
5 #![feature(box_syntax)]
6 #![feature(concat_idents)]
7 #![feature(crate_visibility_modifier)]
8 #![feature(drain_filter)]
9 #![feature(in_band_lifetimes)]
10 #![feature(once_cell)]
11 #![feature(or_patterns)]
12 #![feature(rustc_private)]
13 #![feature(stmt_expr_attributes)]
14 #![feature(control_flow_enum)]
15 #![recursion_limit = "512"]
16 #![cfg_attr(feature = "deny-warnings", deny(warnings))]
17 #![allow(clippy::missing_docs_in_private_items, clippy::must_use_candidate)]
18 #![warn(trivial_casts, trivial_numeric_casts)]
19 // warn on lints, that are included in `rust-lang/rust`s bootstrap
20 #![warn(rust_2018_idioms, unused_lifetimes)]
21 // warn on rustc internal lints
22 #![deny(rustc::internal)]
23
24 // FIXME: switch to something more ergonomic here, once available.
25 // (Currently there is no way to opt into sysroot crates without `extern crate`.)
26 extern crate rustc_ast;
27 extern crate rustc_ast_pretty;
28 extern crate rustc_attr;
29 extern crate rustc_data_structures;
30 extern crate rustc_driver;
31 extern crate rustc_errors;
32 extern crate rustc_hir;
33 extern crate rustc_hir_pretty;
34 extern crate rustc_index;
35 extern crate rustc_infer;
36 extern crate rustc_lexer;
37 extern crate rustc_lint;
38 extern crate rustc_middle;
39 extern crate rustc_mir;
40 extern crate rustc_parse;
41 extern crate rustc_parse_format;
42 extern crate rustc_session;
43 extern crate rustc_span;
44 extern crate rustc_target;
45 extern crate rustc_trait_selection;
46 extern crate rustc_typeck;
47
48 use crate::utils::parse_msrv;
49 use rustc_data_structures::fx::FxHashSet;
50 use rustc_lint::LintId;
51 use rustc_session::Session;
52
53 /// Macro used to declare a Clippy lint.
54 ///
55 /// Every lint declaration consists of 4 parts:
56 ///
57 /// 1. The documentation, which is used for the website
58 /// 2. The `LINT_NAME`. See [lint naming][lint_naming] on lint naming conventions.
59 /// 3. The `lint_level`, which is a mapping from *one* of our lint groups to `Allow`, `Warn` or
60 ///    `Deny`. The lint level here has nothing to do with what lint groups the lint is a part of.
61 /// 4. The `description` that contains a short explanation on what's wrong with code where the
62 ///    lint is triggered.
63 ///
64 /// Currently the categories `style`, `correctness`, `complexity` and `perf` are enabled by default.
65 /// As said in the README.md of this repository, if the lint level mapping changes, please update
66 /// README.md.
67 ///
68 /// # Example
69 ///
70 /// ```
71 /// #![feature(rustc_private)]
72 /// extern crate rustc_session;
73 /// use rustc_session::declare_tool_lint;
74 /// use clippy_lints::declare_clippy_lint;
75 ///
76 /// declare_clippy_lint! {
77 ///     /// **What it does:** Checks for ... (describe what the lint matches).
78 ///     ///
79 ///     /// **Why is this bad?** Supply the reason for linting the code.
80 ///     ///
81 ///     /// **Known problems:** None. (Or describe where it could go wrong.)
82 ///     ///
83 ///     /// **Example:**
84 ///     ///
85 ///     /// ```rust
86 ///     /// // Bad
87 ///     /// Insert a short example of code that triggers the lint
88 ///     ///
89 ///     /// // Good
90 ///     /// Insert a short example of improved code that doesn't trigger the lint
91 ///     /// ```
92 ///     pub LINT_NAME,
93 ///     pedantic,
94 ///     "description"
95 /// }
96 /// ```
97 /// [lint_naming]: https://rust-lang.github.io/rfcs/0344-conventions-galore.html#lints
98 #[macro_export]
99 macro_rules! declare_clippy_lint {
100     { $(#[$attr:meta])* pub $name:tt, style, $description:tt } => {
101         declare_tool_lint! {
102             $(#[$attr])* pub clippy::$name, Warn, $description, report_in_external_macro: true
103         }
104     };
105     { $(#[$attr:meta])* pub $name:tt, correctness, $description:tt } => {
106         declare_tool_lint! {
107             $(#[$attr])* pub clippy::$name, Deny, $description, report_in_external_macro: true
108         }
109     };
110     { $(#[$attr:meta])* pub $name:tt, complexity, $description:tt } => {
111         declare_tool_lint! {
112             $(#[$attr])* pub clippy::$name, Warn, $description, report_in_external_macro: true
113         }
114     };
115     { $(#[$attr:meta])* pub $name:tt, perf, $description:tt } => {
116         declare_tool_lint! {
117             $(#[$attr])* pub clippy::$name, Warn, $description, report_in_external_macro: true
118         }
119     };
120     { $(#[$attr:meta])* pub $name:tt, pedantic, $description:tt } => {
121         declare_tool_lint! {
122             $(#[$attr])* pub clippy::$name, Allow, $description, report_in_external_macro: true
123         }
124     };
125     { $(#[$attr:meta])* pub $name:tt, restriction, $description:tt } => {
126         declare_tool_lint! {
127             $(#[$attr])* pub clippy::$name, Allow, $description, report_in_external_macro: true
128         }
129     };
130     { $(#[$attr:meta])* pub $name:tt, cargo, $description:tt } => {
131         declare_tool_lint! {
132             $(#[$attr])* pub clippy::$name, Allow, $description, report_in_external_macro: true
133         }
134     };
135     { $(#[$attr:meta])* pub $name:tt, nursery, $description:tt } => {
136         declare_tool_lint! {
137             $(#[$attr])* pub clippy::$name, Allow, $description, report_in_external_macro: true
138         }
139     };
140     { $(#[$attr:meta])* pub $name:tt, internal, $description:tt } => {
141         declare_tool_lint! {
142             $(#[$attr])* pub clippy::$name, Allow, $description, report_in_external_macro: true
143         }
144     };
145     { $(#[$attr:meta])* pub $name:tt, internal_warn, $description:tt } => {
146         declare_tool_lint! {
147             $(#[$attr])* pub clippy::$name, Warn, $description, report_in_external_macro: true
148         }
149     };
150 }
151
152 mod consts;
153 #[macro_use]
154 mod utils;
155
156 // begin lints modules, do not remove this comment, it’s used in `update_lints`
157 mod approx_const;
158 mod arithmetic;
159 mod as_conversions;
160 mod asm_syntax;
161 mod assertions_on_constants;
162 mod assign_ops;
163 mod async_yields_async;
164 mod atomic_ordering;
165 mod attrs;
166 mod await_holding_invalid;
167 mod bit_mask;
168 mod blacklisted_name;
169 mod blocks_in_if_conditions;
170 mod booleans;
171 mod bytecount;
172 mod cargo_common_metadata;
173 mod checked_conversions;
174 mod cognitive_complexity;
175 mod collapsible_if;
176 mod collapsible_match;
177 mod comparison_chain;
178 mod copies;
179 mod copy_iterator;
180 mod create_dir;
181 mod dbg_macro;
182 mod default;
183 mod dereference;
184 mod derive;
185 mod disallowed_method;
186 mod doc;
187 mod double_comparison;
188 mod double_parens;
189 mod drop_forget_ref;
190 mod duration_subsec;
191 mod else_if_without_else;
192 mod empty_enum;
193 mod entry;
194 mod enum_clike;
195 mod enum_variants;
196 mod eq_op;
197 mod erasing_op;
198 mod escape;
199 mod eta_reduction;
200 mod eval_order_dependence;
201 mod excessive_bools;
202 mod exit;
203 mod explicit_write;
204 mod fallible_impl_from;
205 mod float_equality_without_abs;
206 mod float_literal;
207 mod floating_point_arithmetic;
208 mod format;
209 mod formatting;
210 mod from_over_into;
211 mod functions;
212 mod future_not_send;
213 mod get_last_with_len;
214 mod identity_op;
215 mod if_let_mutex;
216 mod if_let_some_result;
217 mod if_not_else;
218 mod implicit_return;
219 mod implicit_saturating_sub;
220 mod indexing_slicing;
221 mod infinite_iter;
222 mod inherent_impl;
223 mod inherent_to_string;
224 mod inline_fn_without_body;
225 mod int_plus_one;
226 mod integer_division;
227 mod items_after_statements;
228 mod large_const_arrays;
229 mod large_enum_variant;
230 mod large_stack_arrays;
231 mod len_zero;
232 mod let_if_seq;
233 mod let_underscore;
234 mod lifetimes;
235 mod literal_representation;
236 mod loops;
237 mod macro_use;
238 mod main_recursion;
239 mod manual_async_fn;
240 mod manual_non_exhaustive;
241 mod manual_ok_or;
242 mod manual_strip;
243 mod manual_unwrap_or;
244 mod map_clone;
245 mod map_err_ignore;
246 mod map_identity;
247 mod map_unit_fn;
248 mod match_on_vec_items;
249 mod matches;
250 mod mem_discriminant;
251 mod mem_forget;
252 mod mem_replace;
253 mod methods;
254 mod minmax;
255 mod misc;
256 mod misc_early;
257 mod missing_const_for_fn;
258 mod missing_doc;
259 mod missing_inline;
260 mod modulo_arithmetic;
261 mod multiple_crate_versions;
262 mod mut_key;
263 mod mut_mut;
264 mod mut_mutex_lock;
265 mod mut_reference;
266 mod mutable_debug_assertion;
267 mod mutex_atomic;
268 mod needless_arbitrary_self_type;
269 mod needless_bool;
270 mod needless_borrow;
271 mod needless_borrowed_ref;
272 mod needless_continue;
273 mod needless_pass_by_value;
274 mod needless_question_mark;
275 mod needless_update;
276 mod neg_cmp_op_on_partial_ord;
277 mod neg_multiply;
278 mod new_without_default;
279 mod no_effect;
280 mod non_copy_const;
281 mod non_expressive_names;
282 mod open_options;
283 mod option_env_unwrap;
284 mod option_if_let_else;
285 mod overflow_check_conditional;
286 mod panic_in_result_fn;
287 mod panic_unimplemented;
288 mod partialeq_ne_impl;
289 mod pass_by_ref_or_value;
290 mod path_buf_push_overwrite;
291 mod pattern_type_mismatch;
292 mod precedence;
293 mod ptr;
294 mod ptr_eq;
295 mod ptr_offset_with_cast;
296 mod question_mark;
297 mod ranges;
298 mod redundant_clone;
299 mod redundant_closure_call;
300 mod redundant_else;
301 mod redundant_field_names;
302 mod redundant_pub_crate;
303 mod redundant_static_lifetimes;
304 mod ref_option_ref;
305 mod reference;
306 mod regex;
307 mod repeat_once;
308 mod returns;
309 mod self_assignment;
310 mod serde_api;
311 mod shadow;
312 mod single_component_path_imports;
313 mod size_of_in_element_count;
314 mod slow_vector_initialization;
315 mod stable_sort_primitive;
316 mod strings;
317 mod suspicious_operation_groupings;
318 mod suspicious_trait_impl;
319 mod swap;
320 mod tabs_in_doc_comments;
321 mod temporary_assignment;
322 mod to_digit_is_some;
323 mod to_string_in_display;
324 mod trait_bounds;
325 mod transmute;
326 mod transmuting_null;
327 mod try_err;
328 mod types;
329 mod undropped_manually_drops;
330 mod unicode;
331 mod unit_return_expecting_ord;
332 mod unnamed_address;
333 mod unnecessary_sort_by;
334 mod unnecessary_wraps;
335 mod unnested_or_patterns;
336 mod unsafe_removed_from_name;
337 mod unused_io_amount;
338 mod unused_self;
339 mod unused_unit;
340 mod unwrap;
341 mod unwrap_in_result;
342 mod use_self;
343 mod useless_conversion;
344 mod vec;
345 mod vec_init_then_push;
346 mod vec_resize_to_zero;
347 mod verbose_file_reads;
348 mod wildcard_dependencies;
349 mod wildcard_imports;
350 mod write;
351 mod zero_div_zero;
352 mod zero_sized_map_values;
353 // end lints modules, do not remove this comment, it’s used in `update_lints`
354
355 pub use crate::utils::conf::Conf;
356
357 /// Register all pre expansion lints
358 ///
359 /// Pre-expansion lints run before any macro expansion has happened.
360 ///
361 /// Note that due to the architecture of the compiler, currently `cfg_attr` attributes on crate
362 /// level (i.e `#![cfg_attr(...)]`) will still be expanded even when using a pre-expansion pass.
363 ///
364 /// Used in `./src/driver.rs`.
365 pub fn register_pre_expansion_lints(store: &mut rustc_lint::LintStore) {
366     store.register_pre_expansion_pass(|| box write::Write::default());
367     store.register_pre_expansion_pass(|| box attrs::EarlyAttributes);
368     store.register_pre_expansion_pass(|| box dbg_macro::DbgMacro);
369 }
370
371 #[doc(hidden)]
372 pub fn read_conf(args: &[rustc_ast::NestedMetaItem], sess: &Session) -> Conf {
373     use std::path::Path;
374     match utils::conf::file_from_args(args) {
375         Ok(file_name) => {
376             // if the user specified a file, it must exist, otherwise default to `clippy.toml` but
377             // do not require the file to exist
378             let file_name = match file_name {
379                 Some(file_name) => file_name,
380                 None => match utils::conf::lookup_conf_file() {
381                     Ok(Some(path)) => path,
382                     Ok(None) => return Conf::default(),
383                     Err(error) => {
384                         sess.struct_err(&format!("error finding Clippy's configuration file: {}", error))
385                             .emit();
386                         return Conf::default();
387                     },
388                 },
389             };
390
391             let file_name = if file_name.is_relative() {
392                 sess.local_crate_source_file
393                     .as_deref()
394                     .and_then(Path::parent)
395                     .unwrap_or_else(|| Path::new(""))
396                     .join(file_name)
397             } else {
398                 file_name
399             };
400
401             let (conf, errors) = utils::conf::read(&file_name);
402
403             // all conf errors are non-fatal, we just use the default conf in case of error
404             for error in errors {
405                 sess.struct_err(&format!(
406                     "error reading Clippy's configuration file `{}`: {}",
407                     file_name.display(),
408                     error
409                 ))
410                 .emit();
411             }
412
413             conf
414         },
415         Err((err, span)) => {
416             sess.struct_span_err(span, err)
417                 .span_note(span, "Clippy will use default configuration")
418                 .emit();
419             Conf::default()
420         },
421     }
422 }
423
424 /// Register all lints and lint groups with the rustc plugin registry
425 ///
426 /// Used in `./src/driver.rs`.
427 #[allow(clippy::too_many_lines)]
428 #[rustfmt::skip]
429 pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf: &Conf) {
430     register_removed_non_tool_lints(store);
431
432     // begin deprecated lints, do not remove this comment, it’s used in `update_lints`
433     store.register_removed(
434         "clippy::should_assert_eq",
435         "`assert!()` will be more flexible with RFC 2011",
436     );
437     store.register_removed(
438         "clippy::extend_from_slice",
439         "`.extend_from_slice(_)` is a faster way to extend a Vec by a slice",
440     );
441     store.register_removed(
442         "clippy::range_step_by_zero",
443         "`iterator.step_by(0)` panics nowadays",
444     );
445     store.register_removed(
446         "clippy::unstable_as_slice",
447         "`Vec::as_slice` has been stabilized in 1.7",
448     );
449     store.register_removed(
450         "clippy::unstable_as_mut_slice",
451         "`Vec::as_mut_slice` has been stabilized in 1.7",
452     );
453     store.register_removed(
454         "clippy::misaligned_transmute",
455         "this lint has been split into cast_ptr_alignment and transmute_ptr_to_ptr",
456     );
457     store.register_removed(
458         "clippy::assign_ops",
459         "using compound assignment operators (e.g., `+=`) is harmless",
460     );
461     store.register_removed(
462         "clippy::if_let_redundant_pattern_matching",
463         "this lint has been changed to redundant_pattern_matching",
464     );
465     store.register_removed(
466         "clippy::unsafe_vector_initialization",
467         "the replacement suggested by this lint had substantially different behavior",
468     );
469     store.register_removed(
470         "clippy::invalid_ref",
471         "superseded by rustc lint `invalid_value`",
472     );
473     store.register_removed(
474         "clippy::unused_collect",
475         "`collect` has been marked as #[must_use] in rustc and that covers all cases of this lint",
476     );
477     store.register_removed(
478         "clippy::into_iter_on_array",
479         "this lint has been uplifted to rustc and is now called `array_into_iter`",
480     );
481     store.register_removed(
482         "clippy::unused_label",
483         "this lint has been uplifted to rustc and is now called `unused_labels`",
484     );
485     store.register_removed(
486         "clippy::replace_consts",
487         "associated-constants `MIN`/`MAX` of integers are preferred to `{min,max}_value()` and module constants",
488     );
489     store.register_removed(
490         "clippy::regex_macro",
491         "the regex! macro has been removed from the regex crate in 2018",
492     );
493     store.register_removed(
494         "clippy::drop_bounds",
495         "this lint has been uplifted to rustc and is now called `drop_bounds`",
496     );
497     store.register_removed(
498         "clippy::temporary_cstring_as_ptr",
499         "this lint has been uplifted to rustc and is now called `temporary_cstring_as_ptr`",
500     );
501     store.register_removed(
502         "clippy::panic_params",
503         "this lint has been uplifted to rustc and is now called `panic_fmt`",
504     );
505     // end deprecated lints, do not remove this comment, it’s used in `update_lints`
506
507     // begin register lints, do not remove this comment, it’s used in `update_lints`
508     store.register_lints(&[
509         #[cfg(feature = "internal-lints")]
510         &utils::internal_lints::CLIPPY_LINTS_INTERNAL,
511         #[cfg(feature = "internal-lints")]
512         &utils::internal_lints::COLLAPSIBLE_SPAN_LINT_CALLS,
513         #[cfg(feature = "internal-lints")]
514         &utils::internal_lints::COMPILER_LINT_FUNCTIONS,
515         #[cfg(feature = "internal-lints")]
516         &utils::internal_lints::DEFAULT_LINT,
517         #[cfg(feature = "internal-lints")]
518         &utils::internal_lints::INTERNING_DEFINED_SYMBOL,
519         #[cfg(feature = "internal-lints")]
520         &utils::internal_lints::INVALID_PATHS,
521         #[cfg(feature = "internal-lints")]
522         &utils::internal_lints::LINT_WITHOUT_LINT_PASS,
523         #[cfg(feature = "internal-lints")]
524         &utils::internal_lints::MATCH_TYPE_ON_DIAGNOSTIC_ITEM,
525         #[cfg(feature = "internal-lints")]
526         &utils::internal_lints::OUTER_EXPN_EXPN_DATA,
527         #[cfg(feature = "internal-lints")]
528         &utils::internal_lints::PRODUCE_ICE,
529         &approx_const::APPROX_CONSTANT,
530         &arithmetic::FLOAT_ARITHMETIC,
531         &arithmetic::INTEGER_ARITHMETIC,
532         &as_conversions::AS_CONVERSIONS,
533         &asm_syntax::INLINE_ASM_X86_ATT_SYNTAX,
534         &asm_syntax::INLINE_ASM_X86_INTEL_SYNTAX,
535         &assertions_on_constants::ASSERTIONS_ON_CONSTANTS,
536         &assign_ops::ASSIGN_OP_PATTERN,
537         &assign_ops::MISREFACTORED_ASSIGN_OP,
538         &async_yields_async::ASYNC_YIELDS_ASYNC,
539         &atomic_ordering::INVALID_ATOMIC_ORDERING,
540         &attrs::BLANKET_CLIPPY_RESTRICTION_LINTS,
541         &attrs::DEPRECATED_CFG_ATTR,
542         &attrs::DEPRECATED_SEMVER,
543         &attrs::EMPTY_LINE_AFTER_OUTER_ATTR,
544         &attrs::INLINE_ALWAYS,
545         &attrs::MISMATCHED_TARGET_OS,
546         &attrs::UNKNOWN_CLIPPY_LINTS,
547         &attrs::USELESS_ATTRIBUTE,
548         &await_holding_invalid::AWAIT_HOLDING_LOCK,
549         &await_holding_invalid::AWAIT_HOLDING_REFCELL_REF,
550         &bit_mask::BAD_BIT_MASK,
551         &bit_mask::INEFFECTIVE_BIT_MASK,
552         &bit_mask::VERBOSE_BIT_MASK,
553         &blacklisted_name::BLACKLISTED_NAME,
554         &blocks_in_if_conditions::BLOCKS_IN_IF_CONDITIONS,
555         &booleans::LOGIC_BUG,
556         &booleans::NONMINIMAL_BOOL,
557         &bytecount::NAIVE_BYTECOUNT,
558         &cargo_common_metadata::CARGO_COMMON_METADATA,
559         &checked_conversions::CHECKED_CONVERSIONS,
560         &cognitive_complexity::COGNITIVE_COMPLEXITY,
561         &collapsible_if::COLLAPSIBLE_ELSE_IF,
562         &collapsible_if::COLLAPSIBLE_IF,
563         &collapsible_match::COLLAPSIBLE_MATCH,
564         &comparison_chain::COMPARISON_CHAIN,
565         &copies::IFS_SAME_COND,
566         &copies::IF_SAME_THEN_ELSE,
567         &copies::SAME_FUNCTIONS_IN_IF_CONDITION,
568         &copy_iterator::COPY_ITERATOR,
569         &create_dir::CREATE_DIR,
570         &dbg_macro::DBG_MACRO,
571         &default::DEFAULT_TRAIT_ACCESS,
572         &default::FIELD_REASSIGN_WITH_DEFAULT,
573         &dereference::EXPLICIT_DEREF_METHODS,
574         &derive::DERIVE_HASH_XOR_EQ,
575         &derive::DERIVE_ORD_XOR_PARTIAL_ORD,
576         &derive::EXPL_IMPL_CLONE_ON_COPY,
577         &derive::UNSAFE_DERIVE_DESERIALIZE,
578         &disallowed_method::DISALLOWED_METHOD,
579         &doc::DOC_MARKDOWN,
580         &doc::MISSING_ERRORS_DOC,
581         &doc::MISSING_SAFETY_DOC,
582         &doc::NEEDLESS_DOCTEST_MAIN,
583         &double_comparison::DOUBLE_COMPARISONS,
584         &double_parens::DOUBLE_PARENS,
585         &drop_forget_ref::DROP_COPY,
586         &drop_forget_ref::DROP_REF,
587         &drop_forget_ref::FORGET_COPY,
588         &drop_forget_ref::FORGET_REF,
589         &duration_subsec::DURATION_SUBSEC,
590         &else_if_without_else::ELSE_IF_WITHOUT_ELSE,
591         &empty_enum::EMPTY_ENUM,
592         &entry::MAP_ENTRY,
593         &enum_clike::ENUM_CLIKE_UNPORTABLE_VARIANT,
594         &enum_variants::ENUM_VARIANT_NAMES,
595         &enum_variants::MODULE_INCEPTION,
596         &enum_variants::MODULE_NAME_REPETITIONS,
597         &enum_variants::PUB_ENUM_VARIANT_NAMES,
598         &eq_op::EQ_OP,
599         &eq_op::OP_REF,
600         &erasing_op::ERASING_OP,
601         &escape::BOXED_LOCAL,
602         &eta_reduction::REDUNDANT_CLOSURE,
603         &eta_reduction::REDUNDANT_CLOSURE_FOR_METHOD_CALLS,
604         &eval_order_dependence::DIVERGING_SUB_EXPRESSION,
605         &eval_order_dependence::EVAL_ORDER_DEPENDENCE,
606         &excessive_bools::FN_PARAMS_EXCESSIVE_BOOLS,
607         &excessive_bools::STRUCT_EXCESSIVE_BOOLS,
608         &exit::EXIT,
609         &explicit_write::EXPLICIT_WRITE,
610         &fallible_impl_from::FALLIBLE_IMPL_FROM,
611         &float_equality_without_abs::FLOAT_EQUALITY_WITHOUT_ABS,
612         &float_literal::EXCESSIVE_PRECISION,
613         &float_literal::LOSSY_FLOAT_LITERAL,
614         &floating_point_arithmetic::IMPRECISE_FLOPS,
615         &floating_point_arithmetic::SUBOPTIMAL_FLOPS,
616         &format::USELESS_FORMAT,
617         &formatting::POSSIBLE_MISSING_COMMA,
618         &formatting::SUSPICIOUS_ASSIGNMENT_FORMATTING,
619         &formatting::SUSPICIOUS_ELSE_FORMATTING,
620         &formatting::SUSPICIOUS_UNARY_OP_FORMATTING,
621         &from_over_into::FROM_OVER_INTO,
622         &functions::DOUBLE_MUST_USE,
623         &functions::MUST_USE_CANDIDATE,
624         &functions::MUST_USE_UNIT,
625         &functions::NOT_UNSAFE_PTR_ARG_DEREF,
626         &functions::RESULT_UNIT_ERR,
627         &functions::TOO_MANY_ARGUMENTS,
628         &functions::TOO_MANY_LINES,
629         &future_not_send::FUTURE_NOT_SEND,
630         &get_last_with_len::GET_LAST_WITH_LEN,
631         &identity_op::IDENTITY_OP,
632         &if_let_mutex::IF_LET_MUTEX,
633         &if_let_some_result::IF_LET_SOME_RESULT,
634         &if_not_else::IF_NOT_ELSE,
635         &implicit_return::IMPLICIT_RETURN,
636         &implicit_saturating_sub::IMPLICIT_SATURATING_SUB,
637         &indexing_slicing::INDEXING_SLICING,
638         &indexing_slicing::OUT_OF_BOUNDS_INDEXING,
639         &infinite_iter::INFINITE_ITER,
640         &infinite_iter::MAYBE_INFINITE_ITER,
641         &inherent_impl::MULTIPLE_INHERENT_IMPL,
642         &inherent_to_string::INHERENT_TO_STRING,
643         &inherent_to_string::INHERENT_TO_STRING_SHADOW_DISPLAY,
644         &inline_fn_without_body::INLINE_FN_WITHOUT_BODY,
645         &int_plus_one::INT_PLUS_ONE,
646         &integer_division::INTEGER_DIVISION,
647         &items_after_statements::ITEMS_AFTER_STATEMENTS,
648         &large_const_arrays::LARGE_CONST_ARRAYS,
649         &large_enum_variant::LARGE_ENUM_VARIANT,
650         &large_stack_arrays::LARGE_STACK_ARRAYS,
651         &len_zero::COMPARISON_TO_EMPTY,
652         &len_zero::LEN_WITHOUT_IS_EMPTY,
653         &len_zero::LEN_ZERO,
654         &let_if_seq::USELESS_LET_IF_SEQ,
655         &let_underscore::LET_UNDERSCORE_DROP,
656         &let_underscore::LET_UNDERSCORE_LOCK,
657         &let_underscore::LET_UNDERSCORE_MUST_USE,
658         &lifetimes::EXTRA_UNUSED_LIFETIMES,
659         &lifetimes::NEEDLESS_LIFETIMES,
660         &literal_representation::DECIMAL_LITERAL_REPRESENTATION,
661         &literal_representation::INCONSISTENT_DIGIT_GROUPING,
662         &literal_representation::LARGE_DIGIT_GROUPS,
663         &literal_representation::MISTYPED_LITERAL_SUFFIXES,
664         &literal_representation::UNREADABLE_LITERAL,
665         &literal_representation::UNUSUAL_BYTE_GROUPINGS,
666         &loops::EMPTY_LOOP,
667         &loops::EXPLICIT_COUNTER_LOOP,
668         &loops::EXPLICIT_INTO_ITER_LOOP,
669         &loops::EXPLICIT_ITER_LOOP,
670         &loops::FOR_KV_MAP,
671         &loops::FOR_LOOPS_OVER_FALLIBLES,
672         &loops::ITER_NEXT_LOOP,
673         &loops::MANUAL_MEMCPY,
674         &loops::MUT_RANGE_BOUND,
675         &loops::NEEDLESS_COLLECT,
676         &loops::NEEDLESS_RANGE_LOOP,
677         &loops::NEVER_LOOP,
678         &loops::SAME_ITEM_PUSH,
679         &loops::SINGLE_ELEMENT_LOOP,
680         &loops::WHILE_IMMUTABLE_CONDITION,
681         &loops::WHILE_LET_LOOP,
682         &loops::WHILE_LET_ON_ITERATOR,
683         &macro_use::MACRO_USE_IMPORTS,
684         &main_recursion::MAIN_RECURSION,
685         &manual_async_fn::MANUAL_ASYNC_FN,
686         &manual_non_exhaustive::MANUAL_NON_EXHAUSTIVE,
687         &manual_ok_or::MANUAL_OK_OR,
688         &manual_strip::MANUAL_STRIP,
689         &manual_unwrap_or::MANUAL_UNWRAP_OR,
690         &map_clone::MAP_CLONE,
691         &map_err_ignore::MAP_ERR_IGNORE,
692         &map_identity::MAP_IDENTITY,
693         &map_unit_fn::OPTION_MAP_UNIT_FN,
694         &map_unit_fn::RESULT_MAP_UNIT_FN,
695         &match_on_vec_items::MATCH_ON_VEC_ITEMS,
696         &matches::INFALLIBLE_DESTRUCTURING_MATCH,
697         &matches::MATCH_AS_REF,
698         &matches::MATCH_BOOL,
699         &matches::MATCH_LIKE_MATCHES_MACRO,
700         &matches::MATCH_OVERLAPPING_ARM,
701         &matches::MATCH_REF_PATS,
702         &matches::MATCH_SAME_ARMS,
703         &matches::MATCH_SINGLE_BINDING,
704         &matches::MATCH_WILDCARD_FOR_SINGLE_VARIANTS,
705         &matches::MATCH_WILD_ERR_ARM,
706         &matches::REDUNDANT_PATTERN_MATCHING,
707         &matches::REST_PAT_IN_FULLY_BOUND_STRUCTS,
708         &matches::SINGLE_MATCH,
709         &matches::SINGLE_MATCH_ELSE,
710         &matches::WILDCARD_ENUM_MATCH_ARM,
711         &matches::WILDCARD_IN_OR_PATTERNS,
712         &mem_discriminant::MEM_DISCRIMINANT_NON_ENUM,
713         &mem_forget::MEM_FORGET,
714         &mem_replace::MEM_REPLACE_OPTION_WITH_NONE,
715         &mem_replace::MEM_REPLACE_WITH_DEFAULT,
716         &mem_replace::MEM_REPLACE_WITH_UNINIT,
717         &methods::BIND_INSTEAD_OF_MAP,
718         &methods::CHARS_LAST_CMP,
719         &methods::CHARS_NEXT_CMP,
720         &methods::CLONE_DOUBLE_REF,
721         &methods::CLONE_ON_COPY,
722         &methods::CLONE_ON_REF_PTR,
723         &methods::EXPECT_FUN_CALL,
724         &methods::EXPECT_USED,
725         &methods::FILETYPE_IS_FILE,
726         &methods::FILTER_MAP,
727         &methods::FILTER_MAP_NEXT,
728         &methods::FILTER_NEXT,
729         &methods::FIND_MAP,
730         &methods::FLAT_MAP_IDENTITY,
731         &methods::FROM_ITER_INSTEAD_OF_COLLECT,
732         &methods::GET_UNWRAP,
733         &methods::INEFFICIENT_TO_STRING,
734         &methods::INTO_ITER_ON_REF,
735         &methods::ITERATOR_STEP_BY_ZERO,
736         &methods::ITER_CLONED_COLLECT,
737         &methods::ITER_NEXT_SLICE,
738         &methods::ITER_NTH,
739         &methods::ITER_NTH_ZERO,
740         &methods::ITER_SKIP_NEXT,
741         &methods::MANUAL_SATURATING_ARITHMETIC,
742         &methods::MAP_COLLECT_RESULT_UNIT,
743         &methods::MAP_FLATTEN,
744         &methods::MAP_UNWRAP_OR,
745         &methods::NEW_RET_NO_SELF,
746         &methods::OK_EXPECT,
747         &methods::OPTION_AS_REF_DEREF,
748         &methods::OPTION_MAP_OR_NONE,
749         &methods::OR_FUN_CALL,
750         &methods::RESULT_MAP_OR_INTO_OPTION,
751         &methods::SEARCH_IS_SOME,
752         &methods::SHOULD_IMPLEMENT_TRAIT,
753         &methods::SINGLE_CHAR_ADD_STR,
754         &methods::SINGLE_CHAR_PATTERN,
755         &methods::SKIP_WHILE_NEXT,
756         &methods::STRING_EXTEND_CHARS,
757         &methods::SUSPICIOUS_MAP,
758         &methods::UNINIT_ASSUMED_INIT,
759         &methods::UNNECESSARY_FILTER_MAP,
760         &methods::UNNECESSARY_FOLD,
761         &methods::UNNECESSARY_LAZY_EVALUATIONS,
762         &methods::UNWRAP_USED,
763         &methods::USELESS_ASREF,
764         &methods::WRONG_PUB_SELF_CONVENTION,
765         &methods::WRONG_SELF_CONVENTION,
766         &methods::ZST_OFFSET,
767         &minmax::MIN_MAX,
768         &misc::CMP_NAN,
769         &misc::CMP_OWNED,
770         &misc::FLOAT_CMP,
771         &misc::FLOAT_CMP_CONST,
772         &misc::MODULO_ONE,
773         &misc::SHORT_CIRCUIT_STATEMENT,
774         &misc::TOPLEVEL_REF_ARG,
775         &misc::USED_UNDERSCORE_BINDING,
776         &misc::ZERO_PTR,
777         &misc_early::BUILTIN_TYPE_SHADOW,
778         &misc_early::DOUBLE_NEG,
779         &misc_early::DUPLICATE_UNDERSCORE_ARGUMENT,
780         &misc_early::MIXED_CASE_HEX_LITERALS,
781         &misc_early::REDUNDANT_PATTERN,
782         &misc_early::UNNEEDED_FIELD_PATTERN,
783         &misc_early::UNNEEDED_WILDCARD_PATTERN,
784         &misc_early::UNSEPARATED_LITERAL_SUFFIX,
785         &misc_early::ZERO_PREFIXED_LITERAL,
786         &missing_const_for_fn::MISSING_CONST_FOR_FN,
787         &missing_doc::MISSING_DOCS_IN_PRIVATE_ITEMS,
788         &missing_inline::MISSING_INLINE_IN_PUBLIC_ITEMS,
789         &modulo_arithmetic::MODULO_ARITHMETIC,
790         &multiple_crate_versions::MULTIPLE_CRATE_VERSIONS,
791         &mut_key::MUTABLE_KEY_TYPE,
792         &mut_mut::MUT_MUT,
793         &mut_mutex_lock::MUT_MUTEX_LOCK,
794         &mut_reference::UNNECESSARY_MUT_PASSED,
795         &mutable_debug_assertion::DEBUG_ASSERT_WITH_MUT_CALL,
796         &mutex_atomic::MUTEX_ATOMIC,
797         &mutex_atomic::MUTEX_INTEGER,
798         &needless_arbitrary_self_type::NEEDLESS_ARBITRARY_SELF_TYPE,
799         &needless_bool::BOOL_COMPARISON,
800         &needless_bool::NEEDLESS_BOOL,
801         &needless_borrow::NEEDLESS_BORROW,
802         &needless_borrowed_ref::NEEDLESS_BORROWED_REFERENCE,
803         &needless_continue::NEEDLESS_CONTINUE,
804         &needless_pass_by_value::NEEDLESS_PASS_BY_VALUE,
805         &needless_question_mark::NEEDLESS_QUESTION_MARK,
806         &needless_update::NEEDLESS_UPDATE,
807         &neg_cmp_op_on_partial_ord::NEG_CMP_OP_ON_PARTIAL_ORD,
808         &neg_multiply::NEG_MULTIPLY,
809         &new_without_default::NEW_WITHOUT_DEFAULT,
810         &no_effect::NO_EFFECT,
811         &no_effect::UNNECESSARY_OPERATION,
812         &non_copy_const::BORROW_INTERIOR_MUTABLE_CONST,
813         &non_copy_const::DECLARE_INTERIOR_MUTABLE_CONST,
814         &non_expressive_names::JUST_UNDERSCORES_AND_DIGITS,
815         &non_expressive_names::MANY_SINGLE_CHAR_NAMES,
816         &non_expressive_names::SIMILAR_NAMES,
817         &open_options::NONSENSICAL_OPEN_OPTIONS,
818         &option_env_unwrap::OPTION_ENV_UNWRAP,
819         &option_if_let_else::OPTION_IF_LET_ELSE,
820         &overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL,
821         &panic_in_result_fn::PANIC_IN_RESULT_FN,
822         &panic_unimplemented::PANIC,
823         &panic_unimplemented::TODO,
824         &panic_unimplemented::UNIMPLEMENTED,
825         &panic_unimplemented::UNREACHABLE,
826         &partialeq_ne_impl::PARTIALEQ_NE_IMPL,
827         &pass_by_ref_or_value::LARGE_TYPES_PASSED_BY_VALUE,
828         &pass_by_ref_or_value::TRIVIALLY_COPY_PASS_BY_REF,
829         &path_buf_push_overwrite::PATH_BUF_PUSH_OVERWRITE,
830         &pattern_type_mismatch::PATTERN_TYPE_MISMATCH,
831         &precedence::PRECEDENCE,
832         &ptr::CMP_NULL,
833         &ptr::MUT_FROM_REF,
834         &ptr::PTR_ARG,
835         &ptr_eq::PTR_EQ,
836         &ptr_offset_with_cast::PTR_OFFSET_WITH_CAST,
837         &question_mark::QUESTION_MARK,
838         &ranges::MANUAL_RANGE_CONTAINS,
839         &ranges::RANGE_MINUS_ONE,
840         &ranges::RANGE_PLUS_ONE,
841         &ranges::RANGE_ZIP_WITH_LEN,
842         &ranges::REVERSED_EMPTY_RANGES,
843         &redundant_clone::REDUNDANT_CLONE,
844         &redundant_closure_call::REDUNDANT_CLOSURE_CALL,
845         &redundant_else::REDUNDANT_ELSE,
846         &redundant_field_names::REDUNDANT_FIELD_NAMES,
847         &redundant_pub_crate::REDUNDANT_PUB_CRATE,
848         &redundant_static_lifetimes::REDUNDANT_STATIC_LIFETIMES,
849         &ref_option_ref::REF_OPTION_REF,
850         &reference::DEREF_ADDROF,
851         &reference::REF_IN_DEREF,
852         &regex::INVALID_REGEX,
853         &regex::TRIVIAL_REGEX,
854         &repeat_once::REPEAT_ONCE,
855         &returns::LET_AND_RETURN,
856         &returns::NEEDLESS_RETURN,
857         &self_assignment::SELF_ASSIGNMENT,
858         &serde_api::SERDE_API_MISUSE,
859         &shadow::SHADOW_REUSE,
860         &shadow::SHADOW_SAME,
861         &shadow::SHADOW_UNRELATED,
862         &single_component_path_imports::SINGLE_COMPONENT_PATH_IMPORTS,
863         &size_of_in_element_count::SIZE_OF_IN_ELEMENT_COUNT,
864         &slow_vector_initialization::SLOW_VECTOR_INITIALIZATION,
865         &stable_sort_primitive::STABLE_SORT_PRIMITIVE,
866         &strings::STRING_ADD,
867         &strings::STRING_ADD_ASSIGN,
868         &strings::STRING_FROM_UTF8_AS_BYTES,
869         &strings::STRING_LIT_AS_BYTES,
870         &strings::STRING_TO_STRING,
871         &strings::STR_TO_STRING,
872         &suspicious_operation_groupings::SUSPICIOUS_OPERATION_GROUPINGS,
873         &suspicious_trait_impl::SUSPICIOUS_ARITHMETIC_IMPL,
874         &suspicious_trait_impl::SUSPICIOUS_OP_ASSIGN_IMPL,
875         &swap::ALMOST_SWAPPED,
876         &swap::MANUAL_SWAP,
877         &tabs_in_doc_comments::TABS_IN_DOC_COMMENTS,
878         &temporary_assignment::TEMPORARY_ASSIGNMENT,
879         &to_digit_is_some::TO_DIGIT_IS_SOME,
880         &to_string_in_display::TO_STRING_IN_DISPLAY,
881         &trait_bounds::TRAIT_DUPLICATION_IN_BOUNDS,
882         &trait_bounds::TYPE_REPETITION_IN_BOUNDS,
883         &transmute::CROSSPOINTER_TRANSMUTE,
884         &transmute::TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS,
885         &transmute::TRANSMUTE_BYTES_TO_STR,
886         &transmute::TRANSMUTE_FLOAT_TO_INT,
887         &transmute::TRANSMUTE_INT_TO_BOOL,
888         &transmute::TRANSMUTE_INT_TO_CHAR,
889         &transmute::TRANSMUTE_INT_TO_FLOAT,
890         &transmute::TRANSMUTE_PTR_TO_PTR,
891         &transmute::TRANSMUTE_PTR_TO_REF,
892         &transmute::UNSOUND_COLLECTION_TRANSMUTE,
893         &transmute::USELESS_TRANSMUTE,
894         &transmute::WRONG_TRANSMUTE,
895         &transmuting_null::TRANSMUTING_NULL,
896         &try_err::TRY_ERR,
897         &types::ABSURD_EXTREME_COMPARISONS,
898         &types::BORROWED_BOX,
899         &types::BOX_VEC,
900         &types::CAST_LOSSLESS,
901         &types::CAST_POSSIBLE_TRUNCATION,
902         &types::CAST_POSSIBLE_WRAP,
903         &types::CAST_PRECISION_LOSS,
904         &types::CAST_PTR_ALIGNMENT,
905         &types::CAST_REF_TO_MUT,
906         &types::CAST_SIGN_LOSS,
907         &types::CHAR_LIT_AS_U8,
908         &types::FN_TO_NUMERIC_CAST,
909         &types::FN_TO_NUMERIC_CAST_WITH_TRUNCATION,
910         &types::IMPLICIT_HASHER,
911         &types::INVALID_UPCAST_COMPARISONS,
912         &types::LET_UNIT_VALUE,
913         &types::LINKEDLIST,
914         &types::OPTION_OPTION,
915         &types::PTR_AS_PTR,
916         &types::RC_BUFFER,
917         &types::REDUNDANT_ALLOCATION,
918         &types::TYPE_COMPLEXITY,
919         &types::UNIT_ARG,
920         &types::UNIT_CMP,
921         &types::UNNECESSARY_CAST,
922         &types::VEC_BOX,
923         &undropped_manually_drops::UNDROPPED_MANUALLY_DROPS,
924         &unicode::INVISIBLE_CHARACTERS,
925         &unicode::NON_ASCII_LITERAL,
926         &unicode::UNICODE_NOT_NFC,
927         &unit_return_expecting_ord::UNIT_RETURN_EXPECTING_ORD,
928         &unnamed_address::FN_ADDRESS_COMPARISONS,
929         &unnamed_address::VTABLE_ADDRESS_COMPARISONS,
930         &unnecessary_sort_by::UNNECESSARY_SORT_BY,
931         &unnecessary_wraps::UNNECESSARY_WRAPS,
932         &unnested_or_patterns::UNNESTED_OR_PATTERNS,
933         &unsafe_removed_from_name::UNSAFE_REMOVED_FROM_NAME,
934         &unused_io_amount::UNUSED_IO_AMOUNT,
935         &unused_self::UNUSED_SELF,
936         &unused_unit::UNUSED_UNIT,
937         &unwrap::PANICKING_UNWRAP,
938         &unwrap::UNNECESSARY_UNWRAP,
939         &unwrap_in_result::UNWRAP_IN_RESULT,
940         &use_self::USE_SELF,
941         &useless_conversion::USELESS_CONVERSION,
942         &vec::USELESS_VEC,
943         &vec_init_then_push::VEC_INIT_THEN_PUSH,
944         &vec_resize_to_zero::VEC_RESIZE_TO_ZERO,
945         &verbose_file_reads::VERBOSE_FILE_READS,
946         &wildcard_dependencies::WILDCARD_DEPENDENCIES,
947         &wildcard_imports::ENUM_GLOB_USE,
948         &wildcard_imports::WILDCARD_IMPORTS,
949         &write::PRINTLN_EMPTY_STRING,
950         &write::PRINT_LITERAL,
951         &write::PRINT_STDERR,
952         &write::PRINT_STDOUT,
953         &write::PRINT_WITH_NEWLINE,
954         &write::USE_DEBUG,
955         &write::WRITELN_EMPTY_STRING,
956         &write::WRITE_LITERAL,
957         &write::WRITE_WITH_NEWLINE,
958         &zero_div_zero::ZERO_DIVIDED_BY_ZERO,
959         &zero_sized_map_values::ZERO_SIZED_MAP_VALUES,
960     ]);
961     // end register lints, do not remove this comment, it’s used in `update_lints`
962
963     // all the internal lints
964     #[cfg(feature = "internal-lints")]
965     {
966         store.register_early_pass(|| box utils::internal_lints::ClippyLintsInternal);
967         store.register_early_pass(|| box utils::internal_lints::ProduceIce);
968         store.register_late_pass(|| box utils::inspector::DeepCodeInspector);
969         store.register_late_pass(|| box utils::internal_lints::CollapsibleCalls);
970         store.register_late_pass(|| box utils::internal_lints::CompilerLintFunctions::new());
971         store.register_late_pass(|| box utils::internal_lints::InvalidPaths);
972         store.register_late_pass(|| box utils::internal_lints::InterningDefinedSymbol::default());
973         store.register_late_pass(|| box utils::internal_lints::LintWithoutLintPass::default());
974         store.register_late_pass(|| box utils::internal_lints::MatchTypeOnDiagItem);
975         store.register_late_pass(|| box utils::internal_lints::OuterExpnDataPass);
976     }
977     store.register_late_pass(|| box utils::author::Author);
978     store.register_late_pass(|| box await_holding_invalid::AwaitHolding);
979     store.register_late_pass(|| box serde_api::SerdeAPI);
980     let vec_box_size_threshold = conf.vec_box_size_threshold;
981     store.register_late_pass(move || box types::Types::new(vec_box_size_threshold));
982     store.register_late_pass(|| box booleans::NonminimalBool);
983     store.register_late_pass(|| box eq_op::EqOp);
984     store.register_late_pass(|| box enum_clike::UnportableVariant);
985     store.register_late_pass(|| box float_literal::FloatLiteral);
986     let verbose_bit_mask_threshold = conf.verbose_bit_mask_threshold;
987     store.register_late_pass(move || box bit_mask::BitMask::new(verbose_bit_mask_threshold));
988     store.register_late_pass(|| box ptr::Ptr);
989     store.register_late_pass(|| box ptr_eq::PtrEq);
990     store.register_late_pass(|| box needless_bool::NeedlessBool);
991     store.register_late_pass(|| box needless_bool::BoolComparison);
992     store.register_late_pass(|| box approx_const::ApproxConstant);
993     store.register_late_pass(|| box misc::MiscLints);
994     store.register_late_pass(|| box eta_reduction::EtaReduction);
995     store.register_late_pass(|| box identity_op::IdentityOp);
996     store.register_late_pass(|| box erasing_op::ErasingOp);
997     store.register_late_pass(|| box mut_mut::MutMut);
998     store.register_late_pass(|| box mut_reference::UnnecessaryMutPassed);
999     store.register_late_pass(|| box len_zero::LenZero);
1000     store.register_late_pass(|| box attrs::Attributes);
1001     store.register_late_pass(|| box blocks_in_if_conditions::BlocksInIfConditions);
1002     store.register_late_pass(|| box collapsible_match::CollapsibleMatch);
1003     store.register_late_pass(|| box unicode::Unicode);
1004     store.register_late_pass(|| box unit_return_expecting_ord::UnitReturnExpectingOrd);
1005     store.register_late_pass(|| box strings::StringAdd);
1006     store.register_late_pass(|| box implicit_return::ImplicitReturn);
1007     store.register_late_pass(|| box implicit_saturating_sub::ImplicitSaturatingSub);
1008
1009     let msrv = conf.msrv.as_ref().and_then(|s| {
1010         parse_msrv(s, None, None).or_else(|| {
1011             sess.err(&format!("error reading Clippy's configuration file. `{}` is not a valid Rust version", s));
1012             None
1013         })
1014     });
1015
1016     store.register_late_pass(move || box methods::Methods::new(msrv));
1017     store.register_late_pass(move || box matches::Matches::new(msrv));
1018     store.register_early_pass(move || box manual_non_exhaustive::ManualNonExhaustive::new(msrv));
1019     store.register_late_pass(move || box manual_strip::ManualStrip::new(msrv));
1020     store.register_early_pass(move || box redundant_static_lifetimes::RedundantStaticLifetimes::new(msrv));
1021     store.register_early_pass(move || box redundant_field_names::RedundantFieldNames::new(msrv));
1022     store.register_late_pass(move || box checked_conversions::CheckedConversions::new(msrv));
1023     store.register_late_pass(move || box mem_replace::MemReplace::new(msrv));
1024     store.register_late_pass(move || box ranges::Ranges::new(msrv));
1025     store.register_late_pass(move || box from_over_into::FromOverInto::new(msrv));
1026     store.register_late_pass(move || box use_self::UseSelf::new(msrv));
1027     store.register_late_pass(move || box missing_const_for_fn::MissingConstForFn::new(msrv));
1028     store.register_late_pass(move || box needless_question_mark::NeedlessQuestionMark::new(msrv));
1029
1030     store.register_late_pass(|| box size_of_in_element_count::SizeOfInElementCount);
1031     store.register_late_pass(|| box map_clone::MapClone);
1032     store.register_late_pass(|| box map_err_ignore::MapErrIgnore);
1033     store.register_late_pass(|| box shadow::Shadow);
1034     store.register_late_pass(|| box types::LetUnitValue);
1035     store.register_late_pass(|| box types::UnitCmp);
1036     store.register_late_pass(|| box loops::Loops);
1037     store.register_late_pass(|| box main_recursion::MainRecursion::default());
1038     store.register_late_pass(|| box lifetimes::Lifetimes);
1039     store.register_late_pass(|| box entry::HashMapPass);
1040     store.register_late_pass(|| box types::Casts);
1041     let type_complexity_threshold = conf.type_complexity_threshold;
1042     store.register_late_pass(move || box types::TypeComplexity::new(type_complexity_threshold));
1043     store.register_late_pass(|| box minmax::MinMaxPass);
1044     store.register_late_pass(|| box open_options::OpenOptions);
1045     store.register_late_pass(|| box zero_div_zero::ZeroDiv);
1046     store.register_late_pass(|| box mutex_atomic::Mutex);
1047     store.register_late_pass(|| box needless_update::NeedlessUpdate);
1048     store.register_late_pass(|| box needless_borrow::NeedlessBorrow::default());
1049     store.register_late_pass(|| box needless_borrowed_ref::NeedlessBorrowedRef);
1050     store.register_late_pass(|| box no_effect::NoEffect);
1051     store.register_late_pass(|| box temporary_assignment::TemporaryAssignment);
1052     store.register_late_pass(|| box transmute::Transmute);
1053     let cognitive_complexity_threshold = conf.cognitive_complexity_threshold;
1054     store.register_late_pass(move || box cognitive_complexity::CognitiveComplexity::new(cognitive_complexity_threshold));
1055     let too_large_for_stack = conf.too_large_for_stack;
1056     store.register_late_pass(move || box escape::BoxedLocal{too_large_for_stack});
1057     store.register_late_pass(move || box vec::UselessVec{too_large_for_stack});
1058     store.register_late_pass(|| box panic_unimplemented::PanicUnimplemented);
1059     store.register_late_pass(|| box strings::StringLitAsBytes);
1060     store.register_late_pass(|| box derive::Derive);
1061     store.register_late_pass(|| box types::CharLitAsU8);
1062     store.register_late_pass(|| box get_last_with_len::GetLastWithLen);
1063     store.register_late_pass(|| box drop_forget_ref::DropForgetRef);
1064     store.register_late_pass(|| box empty_enum::EmptyEnum);
1065     store.register_late_pass(|| box types::AbsurdExtremeComparisons);
1066     store.register_late_pass(|| box types::InvalidUpcastComparisons);
1067     store.register_late_pass(|| box regex::Regex::default());
1068     store.register_late_pass(|| box copies::CopyAndPaste);
1069     store.register_late_pass(|| box copy_iterator::CopyIterator);
1070     store.register_late_pass(|| box format::UselessFormat);
1071     store.register_late_pass(|| box swap::Swap);
1072     store.register_late_pass(|| box overflow_check_conditional::OverflowCheckConditional);
1073     store.register_late_pass(|| box new_without_default::NewWithoutDefault::default());
1074     let blacklisted_names = conf.blacklisted_names.iter().cloned().collect::<FxHashSet<_>>();
1075     store.register_late_pass(move || box blacklisted_name::BlacklistedName::new(blacklisted_names.clone()));
1076     let too_many_arguments_threshold1 = conf.too_many_arguments_threshold;
1077     let too_many_lines_threshold2 = conf.too_many_lines_threshold;
1078     store.register_late_pass(move || box functions::Functions::new(too_many_arguments_threshold1, too_many_lines_threshold2));
1079     let doc_valid_idents = conf.doc_valid_idents.iter().cloned().collect::<FxHashSet<_>>();
1080     store.register_late_pass(move || box doc::DocMarkdown::new(doc_valid_idents.clone()));
1081     store.register_late_pass(|| box neg_multiply::NegMultiply);
1082     store.register_late_pass(|| box mem_discriminant::MemDiscriminant);
1083     store.register_late_pass(|| box mem_forget::MemForget);
1084     store.register_late_pass(|| box arithmetic::Arithmetic::default());
1085     store.register_late_pass(|| box assign_ops::AssignOps);
1086     store.register_late_pass(|| box let_if_seq::LetIfSeq);
1087     store.register_late_pass(|| box eval_order_dependence::EvalOrderDependence);
1088     store.register_late_pass(|| box missing_doc::MissingDoc::new());
1089     store.register_late_pass(|| box missing_inline::MissingInline);
1090     store.register_late_pass(|| box if_let_some_result::OkIfLet);
1091     store.register_late_pass(|| box partialeq_ne_impl::PartialEqNeImpl);
1092     store.register_late_pass(|| box unused_io_amount::UnusedIoAmount);
1093     let enum_variant_size_threshold = conf.enum_variant_size_threshold;
1094     store.register_late_pass(move || box large_enum_variant::LargeEnumVariant::new(enum_variant_size_threshold));
1095     store.register_late_pass(|| box explicit_write::ExplicitWrite);
1096     store.register_late_pass(|| box needless_pass_by_value::NeedlessPassByValue);
1097     let pass_by_ref_or_value = pass_by_ref_or_value::PassByRefOrValue::new(
1098         conf.trivial_copy_size_limit,
1099         conf.pass_by_value_size_limit,
1100         &sess.target,
1101     );
1102     store.register_late_pass(move || box pass_by_ref_or_value);
1103     store.register_late_pass(|| box ref_option_ref::RefOptionRef);
1104     store.register_late_pass(|| box try_err::TryErr);
1105     store.register_late_pass(|| box bytecount::ByteCount);
1106     store.register_late_pass(|| box infinite_iter::InfiniteIter);
1107     store.register_late_pass(|| box inline_fn_without_body::InlineFnWithoutBody);
1108     store.register_late_pass(|| box useless_conversion::UselessConversion::default());
1109     store.register_late_pass(|| box types::ImplicitHasher);
1110     store.register_late_pass(|| box fallible_impl_from::FallibleImplFrom);
1111     store.register_late_pass(|| box types::UnitArg);
1112     store.register_late_pass(|| box double_comparison::DoubleComparisons);
1113     store.register_late_pass(|| box question_mark::QuestionMark);
1114     store.register_early_pass(|| box suspicious_operation_groupings::SuspiciousOperationGroupings);
1115     store.register_late_pass(|| box suspicious_trait_impl::SuspiciousImpl);
1116     store.register_late_pass(|| box map_unit_fn::MapUnit);
1117     store.register_late_pass(|| box inherent_impl::MultipleInherentImpl::default());
1118     store.register_late_pass(|| box neg_cmp_op_on_partial_ord::NoNegCompOpForPartialOrd);
1119     store.register_late_pass(|| box unwrap::Unwrap);
1120     store.register_late_pass(|| box duration_subsec::DurationSubsec);
1121     store.register_late_pass(|| box indexing_slicing::IndexingSlicing);
1122     store.register_late_pass(|| box non_copy_const::NonCopyConst);
1123     store.register_late_pass(|| box ptr_offset_with_cast::PtrOffsetWithCast);
1124     store.register_late_pass(|| box redundant_clone::RedundantClone);
1125     store.register_late_pass(|| box slow_vector_initialization::SlowVectorInit);
1126     store.register_late_pass(|| box unnecessary_sort_by::UnnecessarySortBy);
1127     store.register_late_pass(|| box unnecessary_wraps::UnnecessaryWraps);
1128     store.register_late_pass(|| box types::RefToMut);
1129     store.register_late_pass(|| box assertions_on_constants::AssertionsOnConstants);
1130     store.register_late_pass(|| box transmuting_null::TransmutingNull);
1131     store.register_late_pass(|| box path_buf_push_overwrite::PathBufPushOverwrite);
1132     store.register_late_pass(|| box integer_division::IntegerDivision);
1133     store.register_late_pass(|| box inherent_to_string::InherentToString);
1134     let max_trait_bounds = conf.max_trait_bounds;
1135     store.register_late_pass(move || box trait_bounds::TraitBounds::new(max_trait_bounds));
1136     store.register_late_pass(|| box comparison_chain::ComparisonChain);
1137     store.register_late_pass(|| box mut_key::MutableKeyType);
1138     store.register_late_pass(|| box modulo_arithmetic::ModuloArithmetic);
1139     store.register_early_pass(|| box reference::DerefAddrOf);
1140     store.register_early_pass(|| box reference::RefInDeref);
1141     store.register_early_pass(|| box double_parens::DoubleParens);
1142     store.register_late_pass(|| box to_string_in_display::ToStringInDisplay::new());
1143     store.register_early_pass(|| box unsafe_removed_from_name::UnsafeNameRemoval);
1144     store.register_early_pass(|| box if_not_else::IfNotElse);
1145     store.register_early_pass(|| box else_if_without_else::ElseIfWithoutElse);
1146     store.register_early_pass(|| box int_plus_one::IntPlusOne);
1147     store.register_early_pass(|| box formatting::Formatting);
1148     store.register_early_pass(|| box misc_early::MiscEarlyLints);
1149     store.register_early_pass(|| box redundant_closure_call::RedundantClosureCall);
1150     store.register_late_pass(|| box redundant_closure_call::RedundantClosureCall);
1151     store.register_early_pass(|| box unused_unit::UnusedUnit);
1152     store.register_late_pass(|| box returns::Return);
1153     store.register_early_pass(|| box collapsible_if::CollapsibleIf);
1154     store.register_early_pass(|| box items_after_statements::ItemsAfterStatements);
1155     store.register_early_pass(|| box precedence::Precedence);
1156     store.register_early_pass(|| box needless_continue::NeedlessContinue);
1157     store.register_early_pass(|| box redundant_else::RedundantElse);
1158     store.register_late_pass(|| box create_dir::CreateDir);
1159     store.register_early_pass(|| box needless_arbitrary_self_type::NeedlessArbitrarySelfType);
1160     store.register_late_pass(|| box cargo_common_metadata::CargoCommonMetadata);
1161     store.register_late_pass(|| box multiple_crate_versions::MultipleCrateVersions);
1162     store.register_late_pass(|| box wildcard_dependencies::WildcardDependencies);
1163     let literal_representation_lint_fraction_readability = conf.unreadable_literal_lint_fractions;
1164     store.register_early_pass(move || box literal_representation::LiteralDigitGrouping::new(literal_representation_lint_fraction_readability));
1165     let literal_representation_threshold = conf.literal_representation_threshold;
1166     store.register_early_pass(move || box literal_representation::DecimalLiteralRepresentation::new(literal_representation_threshold));
1167     let enum_variant_name_threshold = conf.enum_variant_name_threshold;
1168     store.register_early_pass(move || box enum_variants::EnumVariantNames::new(enum_variant_name_threshold));
1169     store.register_early_pass(|| box tabs_in_doc_comments::TabsInDocComments);
1170     store.register_late_pass(|| box default::Default::default());
1171     store.register_late_pass(|| box unused_self::UnusedSelf);
1172     store.register_late_pass(|| box mutable_debug_assertion::DebugAssertWithMutCall);
1173     store.register_late_pass(|| box exit::Exit);
1174     store.register_late_pass(|| box to_digit_is_some::ToDigitIsSome);
1175     let array_size_threshold = conf.array_size_threshold;
1176     store.register_late_pass(move || box large_stack_arrays::LargeStackArrays::new(array_size_threshold));
1177     store.register_late_pass(move || box large_const_arrays::LargeConstArrays::new(array_size_threshold));
1178     store.register_late_pass(|| box floating_point_arithmetic::FloatingPointArithmetic);
1179     store.register_early_pass(|| box as_conversions::AsConversions);
1180     store.register_late_pass(|| box let_underscore::LetUnderscore);
1181     store.register_late_pass(|| box atomic_ordering::AtomicOrdering);
1182     store.register_early_pass(|| box single_component_path_imports::SingleComponentPathImports);
1183     let max_fn_params_bools = conf.max_fn_params_bools;
1184     let max_struct_bools = conf.max_struct_bools;
1185     store.register_early_pass(move || box excessive_bools::ExcessiveBools::new(max_struct_bools, max_fn_params_bools));
1186     store.register_early_pass(|| box option_env_unwrap::OptionEnvUnwrap);
1187     let warn_on_all_wildcard_imports = conf.warn_on_all_wildcard_imports;
1188     store.register_late_pass(move || box wildcard_imports::WildcardImports::new(warn_on_all_wildcard_imports));
1189     store.register_late_pass(|| box verbose_file_reads::VerboseFileReads);
1190     store.register_late_pass(|| box redundant_pub_crate::RedundantPubCrate::default());
1191     store.register_late_pass(|| box unnamed_address::UnnamedAddress);
1192     store.register_late_pass(|| box dereference::Dereferencing);
1193     store.register_late_pass(|| box option_if_let_else::OptionIfLetElse);
1194     store.register_late_pass(|| box future_not_send::FutureNotSend);
1195     store.register_late_pass(|| box if_let_mutex::IfLetMutex);
1196     store.register_late_pass(|| box mut_mutex_lock::MutMutexLock);
1197     store.register_late_pass(|| box match_on_vec_items::MatchOnVecItems);
1198     store.register_late_pass(|| box manual_async_fn::ManualAsyncFn);
1199     store.register_late_pass(|| box vec_resize_to_zero::VecResizeToZero);
1200     store.register_late_pass(|| box panic_in_result_fn::PanicInResultFn);
1201     let single_char_binding_names_threshold = conf.single_char_binding_names_threshold;
1202     store.register_early_pass(move || box non_expressive_names::NonExpressiveNames {
1203         single_char_binding_names_threshold,
1204     });
1205     store.register_early_pass(|| box unnested_or_patterns::UnnestedOrPatterns);
1206     store.register_late_pass(|| box macro_use::MacroUseImports::default());
1207     store.register_late_pass(|| box map_identity::MapIdentity);
1208     store.register_late_pass(|| box pattern_type_mismatch::PatternTypeMismatch);
1209     store.register_late_pass(|| box stable_sort_primitive::StableSortPrimitive);
1210     store.register_late_pass(|| box repeat_once::RepeatOnce);
1211     store.register_late_pass(|| box unwrap_in_result::UnwrapInResult);
1212     store.register_late_pass(|| box self_assignment::SelfAssignment);
1213     store.register_late_pass(|| box manual_unwrap_or::ManualUnwrapOr);
1214     store.register_late_pass(|| box manual_ok_or::ManualOkOr);
1215     store.register_late_pass(|| box float_equality_without_abs::FloatEqualityWithoutAbs);
1216     store.register_late_pass(|| box async_yields_async::AsyncYieldsAsync);
1217     let disallowed_methods = conf.disallowed_methods.iter().cloned().collect::<FxHashSet<_>>();
1218     store.register_late_pass(move || box disallowed_method::DisallowedMethod::new(&disallowed_methods));
1219     store.register_early_pass(|| box asm_syntax::InlineAsmX86AttSyntax);
1220     store.register_early_pass(|| box asm_syntax::InlineAsmX86IntelSyntax);
1221     store.register_late_pass(|| box undropped_manually_drops::UndroppedManuallyDrops);
1222     store.register_late_pass(|| box strings::StrToString);
1223     store.register_late_pass(|| box strings::StringToString);
1224     store.register_late_pass(|| box zero_sized_map_values::ZeroSizedMapValues);
1225     store.register_late_pass(|| box vec_init_then_push::VecInitThenPush::default());
1226     store.register_late_pass(move || box types::PtrAsPtr::new(msrv));
1227
1228     store.register_group(true, "clippy::restriction", Some("clippy_restriction"), vec![
1229         LintId::of(&arithmetic::FLOAT_ARITHMETIC),
1230         LintId::of(&arithmetic::INTEGER_ARITHMETIC),
1231         LintId::of(&as_conversions::AS_CONVERSIONS),
1232         LintId::of(&asm_syntax::INLINE_ASM_X86_ATT_SYNTAX),
1233         LintId::of(&asm_syntax::INLINE_ASM_X86_INTEL_SYNTAX),
1234         LintId::of(&create_dir::CREATE_DIR),
1235         LintId::of(&dbg_macro::DBG_MACRO),
1236         LintId::of(&else_if_without_else::ELSE_IF_WITHOUT_ELSE),
1237         LintId::of(&exit::EXIT),
1238         LintId::of(&float_literal::LOSSY_FLOAT_LITERAL),
1239         LintId::of(&implicit_return::IMPLICIT_RETURN),
1240         LintId::of(&indexing_slicing::INDEXING_SLICING),
1241         LintId::of(&inherent_impl::MULTIPLE_INHERENT_IMPL),
1242         LintId::of(&integer_division::INTEGER_DIVISION),
1243         LintId::of(&let_underscore::LET_UNDERSCORE_MUST_USE),
1244         LintId::of(&literal_representation::DECIMAL_LITERAL_REPRESENTATION),
1245         LintId::of(&map_err_ignore::MAP_ERR_IGNORE),
1246         LintId::of(&matches::REST_PAT_IN_FULLY_BOUND_STRUCTS),
1247         LintId::of(&matches::WILDCARD_ENUM_MATCH_ARM),
1248         LintId::of(&mem_forget::MEM_FORGET),
1249         LintId::of(&methods::CLONE_ON_REF_PTR),
1250         LintId::of(&methods::EXPECT_USED),
1251         LintId::of(&methods::FILETYPE_IS_FILE),
1252         LintId::of(&methods::GET_UNWRAP),
1253         LintId::of(&methods::UNWRAP_USED),
1254         LintId::of(&methods::WRONG_PUB_SELF_CONVENTION),
1255         LintId::of(&misc::FLOAT_CMP_CONST),
1256         LintId::of(&misc_early::UNNEEDED_FIELD_PATTERN),
1257         LintId::of(&missing_doc::MISSING_DOCS_IN_PRIVATE_ITEMS),
1258         LintId::of(&missing_inline::MISSING_INLINE_IN_PUBLIC_ITEMS),
1259         LintId::of(&modulo_arithmetic::MODULO_ARITHMETIC),
1260         LintId::of(&panic_in_result_fn::PANIC_IN_RESULT_FN),
1261         LintId::of(&panic_unimplemented::PANIC),
1262         LintId::of(&panic_unimplemented::TODO),
1263         LintId::of(&panic_unimplemented::UNIMPLEMENTED),
1264         LintId::of(&panic_unimplemented::UNREACHABLE),
1265         LintId::of(&pattern_type_mismatch::PATTERN_TYPE_MISMATCH),
1266         LintId::of(&shadow::SHADOW_REUSE),
1267         LintId::of(&shadow::SHADOW_SAME),
1268         LintId::of(&strings::STRING_ADD),
1269         LintId::of(&strings::STRING_TO_STRING),
1270         LintId::of(&strings::STR_TO_STRING),
1271         LintId::of(&types::RC_BUFFER),
1272         LintId::of(&unwrap_in_result::UNWRAP_IN_RESULT),
1273         LintId::of(&verbose_file_reads::VERBOSE_FILE_READS),
1274         LintId::of(&write::PRINT_STDERR),
1275         LintId::of(&write::PRINT_STDOUT),
1276         LintId::of(&write::USE_DEBUG),
1277     ]);
1278
1279     store.register_group(true, "clippy::pedantic", Some("clippy_pedantic"), vec![
1280         LintId::of(&attrs::INLINE_ALWAYS),
1281         LintId::of(&await_holding_invalid::AWAIT_HOLDING_LOCK),
1282         LintId::of(&await_holding_invalid::AWAIT_HOLDING_REFCELL_REF),
1283         LintId::of(&bit_mask::VERBOSE_BIT_MASK),
1284         LintId::of(&checked_conversions::CHECKED_CONVERSIONS),
1285         LintId::of(&copies::SAME_FUNCTIONS_IN_IF_CONDITION),
1286         LintId::of(&copy_iterator::COPY_ITERATOR),
1287         LintId::of(&default::DEFAULT_TRAIT_ACCESS),
1288         LintId::of(&dereference::EXPLICIT_DEREF_METHODS),
1289         LintId::of(&derive::EXPL_IMPL_CLONE_ON_COPY),
1290         LintId::of(&derive::UNSAFE_DERIVE_DESERIALIZE),
1291         LintId::of(&doc::DOC_MARKDOWN),
1292         LintId::of(&doc::MISSING_ERRORS_DOC),
1293         LintId::of(&empty_enum::EMPTY_ENUM),
1294         LintId::of(&enum_variants::MODULE_NAME_REPETITIONS),
1295         LintId::of(&enum_variants::PUB_ENUM_VARIANT_NAMES),
1296         LintId::of(&eta_reduction::REDUNDANT_CLOSURE_FOR_METHOD_CALLS),
1297         LintId::of(&excessive_bools::FN_PARAMS_EXCESSIVE_BOOLS),
1298         LintId::of(&excessive_bools::STRUCT_EXCESSIVE_BOOLS),
1299         LintId::of(&functions::MUST_USE_CANDIDATE),
1300         LintId::of(&functions::TOO_MANY_LINES),
1301         LintId::of(&if_not_else::IF_NOT_ELSE),
1302         LintId::of(&implicit_saturating_sub::IMPLICIT_SATURATING_SUB),
1303         LintId::of(&infinite_iter::MAYBE_INFINITE_ITER),
1304         LintId::of(&items_after_statements::ITEMS_AFTER_STATEMENTS),
1305         LintId::of(&large_stack_arrays::LARGE_STACK_ARRAYS),
1306         LintId::of(&let_underscore::LET_UNDERSCORE_DROP),
1307         LintId::of(&literal_representation::LARGE_DIGIT_GROUPS),
1308         LintId::of(&literal_representation::UNREADABLE_LITERAL),
1309         LintId::of(&loops::EXPLICIT_INTO_ITER_LOOP),
1310         LintId::of(&loops::EXPLICIT_ITER_LOOP),
1311         LintId::of(&macro_use::MACRO_USE_IMPORTS),
1312         LintId::of(&manual_ok_or::MANUAL_OK_OR),
1313         LintId::of(&match_on_vec_items::MATCH_ON_VEC_ITEMS),
1314         LintId::of(&matches::MATCH_BOOL),
1315         LintId::of(&matches::MATCH_SAME_ARMS),
1316         LintId::of(&matches::MATCH_WILDCARD_FOR_SINGLE_VARIANTS),
1317         LintId::of(&matches::MATCH_WILD_ERR_ARM),
1318         LintId::of(&matches::SINGLE_MATCH_ELSE),
1319         LintId::of(&methods::FILTER_MAP),
1320         LintId::of(&methods::FILTER_MAP_NEXT),
1321         LintId::of(&methods::FIND_MAP),
1322         LintId::of(&methods::INEFFICIENT_TO_STRING),
1323         LintId::of(&methods::MAP_FLATTEN),
1324         LintId::of(&methods::MAP_UNWRAP_OR),
1325         LintId::of(&misc::USED_UNDERSCORE_BINDING),
1326         LintId::of(&misc_early::UNSEPARATED_LITERAL_SUFFIX),
1327         LintId::of(&mut_mut::MUT_MUT),
1328         LintId::of(&needless_continue::NEEDLESS_CONTINUE),
1329         LintId::of(&needless_pass_by_value::NEEDLESS_PASS_BY_VALUE),
1330         LintId::of(&non_expressive_names::SIMILAR_NAMES),
1331         LintId::of(&option_if_let_else::OPTION_IF_LET_ELSE),
1332         LintId::of(&pass_by_ref_or_value::LARGE_TYPES_PASSED_BY_VALUE),
1333         LintId::of(&pass_by_ref_or_value::TRIVIALLY_COPY_PASS_BY_REF),
1334         LintId::of(&ranges::RANGE_MINUS_ONE),
1335         LintId::of(&ranges::RANGE_PLUS_ONE),
1336         LintId::of(&redundant_else::REDUNDANT_ELSE),
1337         LintId::of(&ref_option_ref::REF_OPTION_REF),
1338         LintId::of(&shadow::SHADOW_UNRELATED),
1339         LintId::of(&strings::STRING_ADD_ASSIGN),
1340         LintId::of(&trait_bounds::TRAIT_DUPLICATION_IN_BOUNDS),
1341         LintId::of(&trait_bounds::TYPE_REPETITION_IN_BOUNDS),
1342         LintId::of(&types::CAST_LOSSLESS),
1343         LintId::of(&types::CAST_POSSIBLE_TRUNCATION),
1344         LintId::of(&types::CAST_POSSIBLE_WRAP),
1345         LintId::of(&types::CAST_PRECISION_LOSS),
1346         LintId::of(&types::CAST_PTR_ALIGNMENT),
1347         LintId::of(&types::CAST_SIGN_LOSS),
1348         LintId::of(&types::IMPLICIT_HASHER),
1349         LintId::of(&types::INVALID_UPCAST_COMPARISONS),
1350         LintId::of(&types::LET_UNIT_VALUE),
1351         LintId::of(&types::LINKEDLIST),
1352         LintId::of(&types::OPTION_OPTION),
1353         LintId::of(&types::PTR_AS_PTR),
1354         LintId::of(&unicode::NON_ASCII_LITERAL),
1355         LintId::of(&unicode::UNICODE_NOT_NFC),
1356         LintId::of(&unnested_or_patterns::UNNESTED_OR_PATTERNS),
1357         LintId::of(&unused_self::UNUSED_SELF),
1358         LintId::of(&wildcard_imports::ENUM_GLOB_USE),
1359         LintId::of(&wildcard_imports::WILDCARD_IMPORTS),
1360         LintId::of(&zero_sized_map_values::ZERO_SIZED_MAP_VALUES),
1361     ]);
1362
1363     #[cfg(feature = "internal-lints")]
1364     store.register_group(true, "clippy::internal", Some("clippy_internal"), vec![
1365         LintId::of(&utils::internal_lints::CLIPPY_LINTS_INTERNAL),
1366         LintId::of(&utils::internal_lints::COLLAPSIBLE_SPAN_LINT_CALLS),
1367         LintId::of(&utils::internal_lints::COMPILER_LINT_FUNCTIONS),
1368         LintId::of(&utils::internal_lints::DEFAULT_LINT),
1369         LintId::of(&utils::internal_lints::INTERNING_DEFINED_SYMBOL),
1370         LintId::of(&utils::internal_lints::INVALID_PATHS),
1371         LintId::of(&utils::internal_lints::LINT_WITHOUT_LINT_PASS),
1372         LintId::of(&utils::internal_lints::MATCH_TYPE_ON_DIAGNOSTIC_ITEM),
1373         LintId::of(&utils::internal_lints::OUTER_EXPN_EXPN_DATA),
1374         LintId::of(&utils::internal_lints::PRODUCE_ICE),
1375     ]);
1376
1377     store.register_group(true, "clippy::all", Some("clippy"), vec![
1378         LintId::of(&approx_const::APPROX_CONSTANT),
1379         LintId::of(&assertions_on_constants::ASSERTIONS_ON_CONSTANTS),
1380         LintId::of(&assign_ops::ASSIGN_OP_PATTERN),
1381         LintId::of(&assign_ops::MISREFACTORED_ASSIGN_OP),
1382         LintId::of(&async_yields_async::ASYNC_YIELDS_ASYNC),
1383         LintId::of(&atomic_ordering::INVALID_ATOMIC_ORDERING),
1384         LintId::of(&attrs::BLANKET_CLIPPY_RESTRICTION_LINTS),
1385         LintId::of(&attrs::DEPRECATED_CFG_ATTR),
1386         LintId::of(&attrs::DEPRECATED_SEMVER),
1387         LintId::of(&attrs::MISMATCHED_TARGET_OS),
1388         LintId::of(&attrs::UNKNOWN_CLIPPY_LINTS),
1389         LintId::of(&attrs::USELESS_ATTRIBUTE),
1390         LintId::of(&bit_mask::BAD_BIT_MASK),
1391         LintId::of(&bit_mask::INEFFECTIVE_BIT_MASK),
1392         LintId::of(&blacklisted_name::BLACKLISTED_NAME),
1393         LintId::of(&blocks_in_if_conditions::BLOCKS_IN_IF_CONDITIONS),
1394         LintId::of(&booleans::LOGIC_BUG),
1395         LintId::of(&booleans::NONMINIMAL_BOOL),
1396         LintId::of(&bytecount::NAIVE_BYTECOUNT),
1397         LintId::of(&collapsible_if::COLLAPSIBLE_ELSE_IF),
1398         LintId::of(&collapsible_if::COLLAPSIBLE_IF),
1399         LintId::of(&collapsible_match::COLLAPSIBLE_MATCH),
1400         LintId::of(&comparison_chain::COMPARISON_CHAIN),
1401         LintId::of(&copies::IFS_SAME_COND),
1402         LintId::of(&copies::IF_SAME_THEN_ELSE),
1403         LintId::of(&default::FIELD_REASSIGN_WITH_DEFAULT),
1404         LintId::of(&derive::DERIVE_HASH_XOR_EQ),
1405         LintId::of(&derive::DERIVE_ORD_XOR_PARTIAL_ORD),
1406         LintId::of(&doc::MISSING_SAFETY_DOC),
1407         LintId::of(&doc::NEEDLESS_DOCTEST_MAIN),
1408         LintId::of(&double_comparison::DOUBLE_COMPARISONS),
1409         LintId::of(&double_parens::DOUBLE_PARENS),
1410         LintId::of(&drop_forget_ref::DROP_COPY),
1411         LintId::of(&drop_forget_ref::DROP_REF),
1412         LintId::of(&drop_forget_ref::FORGET_COPY),
1413         LintId::of(&drop_forget_ref::FORGET_REF),
1414         LintId::of(&duration_subsec::DURATION_SUBSEC),
1415         LintId::of(&entry::MAP_ENTRY),
1416         LintId::of(&enum_clike::ENUM_CLIKE_UNPORTABLE_VARIANT),
1417         LintId::of(&enum_variants::ENUM_VARIANT_NAMES),
1418         LintId::of(&enum_variants::MODULE_INCEPTION),
1419         LintId::of(&eq_op::EQ_OP),
1420         LintId::of(&eq_op::OP_REF),
1421         LintId::of(&erasing_op::ERASING_OP),
1422         LintId::of(&escape::BOXED_LOCAL),
1423         LintId::of(&eta_reduction::REDUNDANT_CLOSURE),
1424         LintId::of(&eval_order_dependence::DIVERGING_SUB_EXPRESSION),
1425         LintId::of(&eval_order_dependence::EVAL_ORDER_DEPENDENCE),
1426         LintId::of(&explicit_write::EXPLICIT_WRITE),
1427         LintId::of(&float_equality_without_abs::FLOAT_EQUALITY_WITHOUT_ABS),
1428         LintId::of(&float_literal::EXCESSIVE_PRECISION),
1429         LintId::of(&format::USELESS_FORMAT),
1430         LintId::of(&formatting::POSSIBLE_MISSING_COMMA),
1431         LintId::of(&formatting::SUSPICIOUS_ASSIGNMENT_FORMATTING),
1432         LintId::of(&formatting::SUSPICIOUS_ELSE_FORMATTING),
1433         LintId::of(&formatting::SUSPICIOUS_UNARY_OP_FORMATTING),
1434         LintId::of(&from_over_into::FROM_OVER_INTO),
1435         LintId::of(&functions::DOUBLE_MUST_USE),
1436         LintId::of(&functions::MUST_USE_UNIT),
1437         LintId::of(&functions::NOT_UNSAFE_PTR_ARG_DEREF),
1438         LintId::of(&functions::RESULT_UNIT_ERR),
1439         LintId::of(&functions::TOO_MANY_ARGUMENTS),
1440         LintId::of(&get_last_with_len::GET_LAST_WITH_LEN),
1441         LintId::of(&identity_op::IDENTITY_OP),
1442         LintId::of(&if_let_mutex::IF_LET_MUTEX),
1443         LintId::of(&if_let_some_result::IF_LET_SOME_RESULT),
1444         LintId::of(&indexing_slicing::OUT_OF_BOUNDS_INDEXING),
1445         LintId::of(&infinite_iter::INFINITE_ITER),
1446         LintId::of(&inherent_to_string::INHERENT_TO_STRING),
1447         LintId::of(&inherent_to_string::INHERENT_TO_STRING_SHADOW_DISPLAY),
1448         LintId::of(&inline_fn_without_body::INLINE_FN_WITHOUT_BODY),
1449         LintId::of(&int_plus_one::INT_PLUS_ONE),
1450         LintId::of(&large_const_arrays::LARGE_CONST_ARRAYS),
1451         LintId::of(&large_enum_variant::LARGE_ENUM_VARIANT),
1452         LintId::of(&len_zero::COMPARISON_TO_EMPTY),
1453         LintId::of(&len_zero::LEN_WITHOUT_IS_EMPTY),
1454         LintId::of(&len_zero::LEN_ZERO),
1455         LintId::of(&let_underscore::LET_UNDERSCORE_LOCK),
1456         LintId::of(&lifetimes::EXTRA_UNUSED_LIFETIMES),
1457         LintId::of(&lifetimes::NEEDLESS_LIFETIMES),
1458         LintId::of(&literal_representation::INCONSISTENT_DIGIT_GROUPING),
1459         LintId::of(&literal_representation::MISTYPED_LITERAL_SUFFIXES),
1460         LintId::of(&literal_representation::UNUSUAL_BYTE_GROUPINGS),
1461         LintId::of(&loops::EMPTY_LOOP),
1462         LintId::of(&loops::EXPLICIT_COUNTER_LOOP),
1463         LintId::of(&loops::FOR_KV_MAP),
1464         LintId::of(&loops::FOR_LOOPS_OVER_FALLIBLES),
1465         LintId::of(&loops::ITER_NEXT_LOOP),
1466         LintId::of(&loops::MANUAL_MEMCPY),
1467         LintId::of(&loops::MUT_RANGE_BOUND),
1468         LintId::of(&loops::NEEDLESS_COLLECT),
1469         LintId::of(&loops::NEEDLESS_RANGE_LOOP),
1470         LintId::of(&loops::NEVER_LOOP),
1471         LintId::of(&loops::SAME_ITEM_PUSH),
1472         LintId::of(&loops::SINGLE_ELEMENT_LOOP),
1473         LintId::of(&loops::WHILE_IMMUTABLE_CONDITION),
1474         LintId::of(&loops::WHILE_LET_LOOP),
1475         LintId::of(&loops::WHILE_LET_ON_ITERATOR),
1476         LintId::of(&main_recursion::MAIN_RECURSION),
1477         LintId::of(&manual_async_fn::MANUAL_ASYNC_FN),
1478         LintId::of(&manual_non_exhaustive::MANUAL_NON_EXHAUSTIVE),
1479         LintId::of(&manual_strip::MANUAL_STRIP),
1480         LintId::of(&manual_unwrap_or::MANUAL_UNWRAP_OR),
1481         LintId::of(&map_clone::MAP_CLONE),
1482         LintId::of(&map_identity::MAP_IDENTITY),
1483         LintId::of(&map_unit_fn::OPTION_MAP_UNIT_FN),
1484         LintId::of(&map_unit_fn::RESULT_MAP_UNIT_FN),
1485         LintId::of(&matches::INFALLIBLE_DESTRUCTURING_MATCH),
1486         LintId::of(&matches::MATCH_AS_REF),
1487         LintId::of(&matches::MATCH_LIKE_MATCHES_MACRO),
1488         LintId::of(&matches::MATCH_OVERLAPPING_ARM),
1489         LintId::of(&matches::MATCH_REF_PATS),
1490         LintId::of(&matches::MATCH_SINGLE_BINDING),
1491         LintId::of(&matches::REDUNDANT_PATTERN_MATCHING),
1492         LintId::of(&matches::SINGLE_MATCH),
1493         LintId::of(&matches::WILDCARD_IN_OR_PATTERNS),
1494         LintId::of(&mem_discriminant::MEM_DISCRIMINANT_NON_ENUM),
1495         LintId::of(&mem_replace::MEM_REPLACE_OPTION_WITH_NONE),
1496         LintId::of(&mem_replace::MEM_REPLACE_WITH_DEFAULT),
1497         LintId::of(&mem_replace::MEM_REPLACE_WITH_UNINIT),
1498         LintId::of(&methods::BIND_INSTEAD_OF_MAP),
1499         LintId::of(&methods::CHARS_LAST_CMP),
1500         LintId::of(&methods::CHARS_NEXT_CMP),
1501         LintId::of(&methods::CLONE_DOUBLE_REF),
1502         LintId::of(&methods::CLONE_ON_COPY),
1503         LintId::of(&methods::EXPECT_FUN_CALL),
1504         LintId::of(&methods::FILTER_NEXT),
1505         LintId::of(&methods::FLAT_MAP_IDENTITY),
1506         LintId::of(&methods::FROM_ITER_INSTEAD_OF_COLLECT),
1507         LintId::of(&methods::INTO_ITER_ON_REF),
1508         LintId::of(&methods::ITERATOR_STEP_BY_ZERO),
1509         LintId::of(&methods::ITER_CLONED_COLLECT),
1510         LintId::of(&methods::ITER_NEXT_SLICE),
1511         LintId::of(&methods::ITER_NTH),
1512         LintId::of(&methods::ITER_NTH_ZERO),
1513         LintId::of(&methods::ITER_SKIP_NEXT),
1514         LintId::of(&methods::MANUAL_SATURATING_ARITHMETIC),
1515         LintId::of(&methods::MAP_COLLECT_RESULT_UNIT),
1516         LintId::of(&methods::NEW_RET_NO_SELF),
1517         LintId::of(&methods::OK_EXPECT),
1518         LintId::of(&methods::OPTION_AS_REF_DEREF),
1519         LintId::of(&methods::OPTION_MAP_OR_NONE),
1520         LintId::of(&methods::OR_FUN_CALL),
1521         LintId::of(&methods::RESULT_MAP_OR_INTO_OPTION),
1522         LintId::of(&methods::SEARCH_IS_SOME),
1523         LintId::of(&methods::SHOULD_IMPLEMENT_TRAIT),
1524         LintId::of(&methods::SINGLE_CHAR_ADD_STR),
1525         LintId::of(&methods::SINGLE_CHAR_PATTERN),
1526         LintId::of(&methods::SKIP_WHILE_NEXT),
1527         LintId::of(&methods::STRING_EXTEND_CHARS),
1528         LintId::of(&methods::SUSPICIOUS_MAP),
1529         LintId::of(&methods::UNINIT_ASSUMED_INIT),
1530         LintId::of(&methods::UNNECESSARY_FILTER_MAP),
1531         LintId::of(&methods::UNNECESSARY_FOLD),
1532         LintId::of(&methods::UNNECESSARY_LAZY_EVALUATIONS),
1533         LintId::of(&methods::USELESS_ASREF),
1534         LintId::of(&methods::WRONG_SELF_CONVENTION),
1535         LintId::of(&methods::ZST_OFFSET),
1536         LintId::of(&minmax::MIN_MAX),
1537         LintId::of(&misc::CMP_NAN),
1538         LintId::of(&misc::CMP_OWNED),
1539         LintId::of(&misc::FLOAT_CMP),
1540         LintId::of(&misc::MODULO_ONE),
1541         LintId::of(&misc::SHORT_CIRCUIT_STATEMENT),
1542         LintId::of(&misc::TOPLEVEL_REF_ARG),
1543         LintId::of(&misc::ZERO_PTR),
1544         LintId::of(&misc_early::BUILTIN_TYPE_SHADOW),
1545         LintId::of(&misc_early::DOUBLE_NEG),
1546         LintId::of(&misc_early::DUPLICATE_UNDERSCORE_ARGUMENT),
1547         LintId::of(&misc_early::MIXED_CASE_HEX_LITERALS),
1548         LintId::of(&misc_early::REDUNDANT_PATTERN),
1549         LintId::of(&misc_early::UNNEEDED_WILDCARD_PATTERN),
1550         LintId::of(&misc_early::ZERO_PREFIXED_LITERAL),
1551         LintId::of(&mut_key::MUTABLE_KEY_TYPE),
1552         LintId::of(&mut_mutex_lock::MUT_MUTEX_LOCK),
1553         LintId::of(&mut_reference::UNNECESSARY_MUT_PASSED),
1554         LintId::of(&mutex_atomic::MUTEX_ATOMIC),
1555         LintId::of(&needless_arbitrary_self_type::NEEDLESS_ARBITRARY_SELF_TYPE),
1556         LintId::of(&needless_bool::BOOL_COMPARISON),
1557         LintId::of(&needless_bool::NEEDLESS_BOOL),
1558         LintId::of(&needless_borrowed_ref::NEEDLESS_BORROWED_REFERENCE),
1559         LintId::of(&needless_question_mark::NEEDLESS_QUESTION_MARK),
1560         LintId::of(&needless_update::NEEDLESS_UPDATE),
1561         LintId::of(&neg_cmp_op_on_partial_ord::NEG_CMP_OP_ON_PARTIAL_ORD),
1562         LintId::of(&neg_multiply::NEG_MULTIPLY),
1563         LintId::of(&new_without_default::NEW_WITHOUT_DEFAULT),
1564         LintId::of(&no_effect::NO_EFFECT),
1565         LintId::of(&no_effect::UNNECESSARY_OPERATION),
1566         LintId::of(&non_copy_const::BORROW_INTERIOR_MUTABLE_CONST),
1567         LintId::of(&non_copy_const::DECLARE_INTERIOR_MUTABLE_CONST),
1568         LintId::of(&non_expressive_names::JUST_UNDERSCORES_AND_DIGITS),
1569         LintId::of(&non_expressive_names::MANY_SINGLE_CHAR_NAMES),
1570         LintId::of(&open_options::NONSENSICAL_OPEN_OPTIONS),
1571         LintId::of(&option_env_unwrap::OPTION_ENV_UNWRAP),
1572         LintId::of(&overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL),
1573         LintId::of(&partialeq_ne_impl::PARTIALEQ_NE_IMPL),
1574         LintId::of(&precedence::PRECEDENCE),
1575         LintId::of(&ptr::CMP_NULL),
1576         LintId::of(&ptr::MUT_FROM_REF),
1577         LintId::of(&ptr::PTR_ARG),
1578         LintId::of(&ptr_eq::PTR_EQ),
1579         LintId::of(&ptr_offset_with_cast::PTR_OFFSET_WITH_CAST),
1580         LintId::of(&question_mark::QUESTION_MARK),
1581         LintId::of(&ranges::MANUAL_RANGE_CONTAINS),
1582         LintId::of(&ranges::RANGE_ZIP_WITH_LEN),
1583         LintId::of(&ranges::REVERSED_EMPTY_RANGES),
1584         LintId::of(&redundant_clone::REDUNDANT_CLONE),
1585         LintId::of(&redundant_closure_call::REDUNDANT_CLOSURE_CALL),
1586         LintId::of(&redundant_field_names::REDUNDANT_FIELD_NAMES),
1587         LintId::of(&redundant_static_lifetimes::REDUNDANT_STATIC_LIFETIMES),
1588         LintId::of(&reference::DEREF_ADDROF),
1589         LintId::of(&reference::REF_IN_DEREF),
1590         LintId::of(&regex::INVALID_REGEX),
1591         LintId::of(&regex::TRIVIAL_REGEX),
1592         LintId::of(&repeat_once::REPEAT_ONCE),
1593         LintId::of(&returns::LET_AND_RETURN),
1594         LintId::of(&returns::NEEDLESS_RETURN),
1595         LintId::of(&self_assignment::SELF_ASSIGNMENT),
1596         LintId::of(&serde_api::SERDE_API_MISUSE),
1597         LintId::of(&single_component_path_imports::SINGLE_COMPONENT_PATH_IMPORTS),
1598         LintId::of(&size_of_in_element_count::SIZE_OF_IN_ELEMENT_COUNT),
1599         LintId::of(&slow_vector_initialization::SLOW_VECTOR_INITIALIZATION),
1600         LintId::of(&stable_sort_primitive::STABLE_SORT_PRIMITIVE),
1601         LintId::of(&strings::STRING_FROM_UTF8_AS_BYTES),
1602         LintId::of(&suspicious_operation_groupings::SUSPICIOUS_OPERATION_GROUPINGS),
1603         LintId::of(&suspicious_trait_impl::SUSPICIOUS_ARITHMETIC_IMPL),
1604         LintId::of(&suspicious_trait_impl::SUSPICIOUS_OP_ASSIGN_IMPL),
1605         LintId::of(&swap::ALMOST_SWAPPED),
1606         LintId::of(&swap::MANUAL_SWAP),
1607         LintId::of(&tabs_in_doc_comments::TABS_IN_DOC_COMMENTS),
1608         LintId::of(&temporary_assignment::TEMPORARY_ASSIGNMENT),
1609         LintId::of(&to_digit_is_some::TO_DIGIT_IS_SOME),
1610         LintId::of(&to_string_in_display::TO_STRING_IN_DISPLAY),
1611         LintId::of(&transmute::CROSSPOINTER_TRANSMUTE),
1612         LintId::of(&transmute::TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS),
1613         LintId::of(&transmute::TRANSMUTE_BYTES_TO_STR),
1614         LintId::of(&transmute::TRANSMUTE_FLOAT_TO_INT),
1615         LintId::of(&transmute::TRANSMUTE_INT_TO_BOOL),
1616         LintId::of(&transmute::TRANSMUTE_INT_TO_CHAR),
1617         LintId::of(&transmute::TRANSMUTE_INT_TO_FLOAT),
1618         LintId::of(&transmute::TRANSMUTE_PTR_TO_PTR),
1619         LintId::of(&transmute::TRANSMUTE_PTR_TO_REF),
1620         LintId::of(&transmute::UNSOUND_COLLECTION_TRANSMUTE),
1621         LintId::of(&transmute::WRONG_TRANSMUTE),
1622         LintId::of(&transmuting_null::TRANSMUTING_NULL),
1623         LintId::of(&try_err::TRY_ERR),
1624         LintId::of(&types::ABSURD_EXTREME_COMPARISONS),
1625         LintId::of(&types::BORROWED_BOX),
1626         LintId::of(&types::BOX_VEC),
1627         LintId::of(&types::CAST_REF_TO_MUT),
1628         LintId::of(&types::CHAR_LIT_AS_U8),
1629         LintId::of(&types::FN_TO_NUMERIC_CAST),
1630         LintId::of(&types::FN_TO_NUMERIC_CAST_WITH_TRUNCATION),
1631         LintId::of(&types::REDUNDANT_ALLOCATION),
1632         LintId::of(&types::TYPE_COMPLEXITY),
1633         LintId::of(&types::UNIT_ARG),
1634         LintId::of(&types::UNIT_CMP),
1635         LintId::of(&types::UNNECESSARY_CAST),
1636         LintId::of(&types::VEC_BOX),
1637         LintId::of(&undropped_manually_drops::UNDROPPED_MANUALLY_DROPS),
1638         LintId::of(&unicode::INVISIBLE_CHARACTERS),
1639         LintId::of(&unit_return_expecting_ord::UNIT_RETURN_EXPECTING_ORD),
1640         LintId::of(&unnamed_address::FN_ADDRESS_COMPARISONS),
1641         LintId::of(&unnamed_address::VTABLE_ADDRESS_COMPARISONS),
1642         LintId::of(&unnecessary_sort_by::UNNECESSARY_SORT_BY),
1643         LintId::of(&unnecessary_wraps::UNNECESSARY_WRAPS),
1644         LintId::of(&unsafe_removed_from_name::UNSAFE_REMOVED_FROM_NAME),
1645         LintId::of(&unused_io_amount::UNUSED_IO_AMOUNT),
1646         LintId::of(&unused_unit::UNUSED_UNIT),
1647         LintId::of(&unwrap::PANICKING_UNWRAP),
1648         LintId::of(&unwrap::UNNECESSARY_UNWRAP),
1649         LintId::of(&useless_conversion::USELESS_CONVERSION),
1650         LintId::of(&vec::USELESS_VEC),
1651         LintId::of(&vec_init_then_push::VEC_INIT_THEN_PUSH),
1652         LintId::of(&vec_resize_to_zero::VEC_RESIZE_TO_ZERO),
1653         LintId::of(&write::PRINTLN_EMPTY_STRING),
1654         LintId::of(&write::PRINT_LITERAL),
1655         LintId::of(&write::PRINT_WITH_NEWLINE),
1656         LintId::of(&write::WRITELN_EMPTY_STRING),
1657         LintId::of(&write::WRITE_LITERAL),
1658         LintId::of(&write::WRITE_WITH_NEWLINE),
1659         LintId::of(&zero_div_zero::ZERO_DIVIDED_BY_ZERO),
1660     ]);
1661
1662     store.register_group(true, "clippy::style", Some("clippy_style"), vec![
1663         LintId::of(&assertions_on_constants::ASSERTIONS_ON_CONSTANTS),
1664         LintId::of(&assign_ops::ASSIGN_OP_PATTERN),
1665         LintId::of(&attrs::BLANKET_CLIPPY_RESTRICTION_LINTS),
1666         LintId::of(&attrs::UNKNOWN_CLIPPY_LINTS),
1667         LintId::of(&blacklisted_name::BLACKLISTED_NAME),
1668         LintId::of(&blocks_in_if_conditions::BLOCKS_IN_IF_CONDITIONS),
1669         LintId::of(&collapsible_if::COLLAPSIBLE_ELSE_IF),
1670         LintId::of(&collapsible_if::COLLAPSIBLE_IF),
1671         LintId::of(&collapsible_match::COLLAPSIBLE_MATCH),
1672         LintId::of(&comparison_chain::COMPARISON_CHAIN),
1673         LintId::of(&default::FIELD_REASSIGN_WITH_DEFAULT),
1674         LintId::of(&doc::MISSING_SAFETY_DOC),
1675         LintId::of(&doc::NEEDLESS_DOCTEST_MAIN),
1676         LintId::of(&enum_variants::ENUM_VARIANT_NAMES),
1677         LintId::of(&enum_variants::MODULE_INCEPTION),
1678         LintId::of(&eq_op::OP_REF),
1679         LintId::of(&eta_reduction::REDUNDANT_CLOSURE),
1680         LintId::of(&float_literal::EXCESSIVE_PRECISION),
1681         LintId::of(&formatting::SUSPICIOUS_ASSIGNMENT_FORMATTING),
1682         LintId::of(&formatting::SUSPICIOUS_ELSE_FORMATTING),
1683         LintId::of(&formatting::SUSPICIOUS_UNARY_OP_FORMATTING),
1684         LintId::of(&from_over_into::FROM_OVER_INTO),
1685         LintId::of(&functions::DOUBLE_MUST_USE),
1686         LintId::of(&functions::MUST_USE_UNIT),
1687         LintId::of(&functions::RESULT_UNIT_ERR),
1688         LintId::of(&if_let_some_result::IF_LET_SOME_RESULT),
1689         LintId::of(&inherent_to_string::INHERENT_TO_STRING),
1690         LintId::of(&len_zero::COMPARISON_TO_EMPTY),
1691         LintId::of(&len_zero::LEN_WITHOUT_IS_EMPTY),
1692         LintId::of(&len_zero::LEN_ZERO),
1693         LintId::of(&literal_representation::INCONSISTENT_DIGIT_GROUPING),
1694         LintId::of(&literal_representation::UNUSUAL_BYTE_GROUPINGS),
1695         LintId::of(&loops::EMPTY_LOOP),
1696         LintId::of(&loops::FOR_KV_MAP),
1697         LintId::of(&loops::NEEDLESS_RANGE_LOOP),
1698         LintId::of(&loops::SAME_ITEM_PUSH),
1699         LintId::of(&loops::WHILE_LET_ON_ITERATOR),
1700         LintId::of(&main_recursion::MAIN_RECURSION),
1701         LintId::of(&manual_async_fn::MANUAL_ASYNC_FN),
1702         LintId::of(&manual_non_exhaustive::MANUAL_NON_EXHAUSTIVE),
1703         LintId::of(&map_clone::MAP_CLONE),
1704         LintId::of(&matches::INFALLIBLE_DESTRUCTURING_MATCH),
1705         LintId::of(&matches::MATCH_LIKE_MATCHES_MACRO),
1706         LintId::of(&matches::MATCH_OVERLAPPING_ARM),
1707         LintId::of(&matches::MATCH_REF_PATS),
1708         LintId::of(&matches::REDUNDANT_PATTERN_MATCHING),
1709         LintId::of(&matches::SINGLE_MATCH),
1710         LintId::of(&mem_replace::MEM_REPLACE_OPTION_WITH_NONE),
1711         LintId::of(&mem_replace::MEM_REPLACE_WITH_DEFAULT),
1712         LintId::of(&methods::CHARS_LAST_CMP),
1713         LintId::of(&methods::CHARS_NEXT_CMP),
1714         LintId::of(&methods::FROM_ITER_INSTEAD_OF_COLLECT),
1715         LintId::of(&methods::INTO_ITER_ON_REF),
1716         LintId::of(&methods::ITER_CLONED_COLLECT),
1717         LintId::of(&methods::ITER_NEXT_SLICE),
1718         LintId::of(&methods::ITER_NTH_ZERO),
1719         LintId::of(&methods::ITER_SKIP_NEXT),
1720         LintId::of(&methods::MANUAL_SATURATING_ARITHMETIC),
1721         LintId::of(&methods::MAP_COLLECT_RESULT_UNIT),
1722         LintId::of(&methods::NEW_RET_NO_SELF),
1723         LintId::of(&methods::OK_EXPECT),
1724         LintId::of(&methods::OPTION_MAP_OR_NONE),
1725         LintId::of(&methods::RESULT_MAP_OR_INTO_OPTION),
1726         LintId::of(&methods::SHOULD_IMPLEMENT_TRAIT),
1727         LintId::of(&methods::SINGLE_CHAR_ADD_STR),
1728         LintId::of(&methods::STRING_EXTEND_CHARS),
1729         LintId::of(&methods::UNNECESSARY_FOLD),
1730         LintId::of(&methods::UNNECESSARY_LAZY_EVALUATIONS),
1731         LintId::of(&methods::WRONG_SELF_CONVENTION),
1732         LintId::of(&misc::TOPLEVEL_REF_ARG),
1733         LintId::of(&misc::ZERO_PTR),
1734         LintId::of(&misc_early::BUILTIN_TYPE_SHADOW),
1735         LintId::of(&misc_early::DOUBLE_NEG),
1736         LintId::of(&misc_early::DUPLICATE_UNDERSCORE_ARGUMENT),
1737         LintId::of(&misc_early::MIXED_CASE_HEX_LITERALS),
1738         LintId::of(&misc_early::REDUNDANT_PATTERN),
1739         LintId::of(&mut_mutex_lock::MUT_MUTEX_LOCK),
1740         LintId::of(&mut_reference::UNNECESSARY_MUT_PASSED),
1741         LintId::of(&neg_multiply::NEG_MULTIPLY),
1742         LintId::of(&new_without_default::NEW_WITHOUT_DEFAULT),
1743         LintId::of(&non_copy_const::BORROW_INTERIOR_MUTABLE_CONST),
1744         LintId::of(&non_copy_const::DECLARE_INTERIOR_MUTABLE_CONST),
1745         LintId::of(&non_expressive_names::JUST_UNDERSCORES_AND_DIGITS),
1746         LintId::of(&non_expressive_names::MANY_SINGLE_CHAR_NAMES),
1747         LintId::of(&ptr::CMP_NULL),
1748         LintId::of(&ptr::PTR_ARG),
1749         LintId::of(&ptr_eq::PTR_EQ),
1750         LintId::of(&question_mark::QUESTION_MARK),
1751         LintId::of(&ranges::MANUAL_RANGE_CONTAINS),
1752         LintId::of(&redundant_field_names::REDUNDANT_FIELD_NAMES),
1753         LintId::of(&redundant_static_lifetimes::REDUNDANT_STATIC_LIFETIMES),
1754         LintId::of(&regex::TRIVIAL_REGEX),
1755         LintId::of(&returns::LET_AND_RETURN),
1756         LintId::of(&returns::NEEDLESS_RETURN),
1757         LintId::of(&single_component_path_imports::SINGLE_COMPONENT_PATH_IMPORTS),
1758         LintId::of(&suspicious_operation_groupings::SUSPICIOUS_OPERATION_GROUPINGS),
1759         LintId::of(&tabs_in_doc_comments::TABS_IN_DOC_COMMENTS),
1760         LintId::of(&to_digit_is_some::TO_DIGIT_IS_SOME),
1761         LintId::of(&try_err::TRY_ERR),
1762         LintId::of(&types::FN_TO_NUMERIC_CAST),
1763         LintId::of(&types::FN_TO_NUMERIC_CAST_WITH_TRUNCATION),
1764         LintId::of(&unsafe_removed_from_name::UNSAFE_REMOVED_FROM_NAME),
1765         LintId::of(&unused_unit::UNUSED_UNIT),
1766         LintId::of(&write::PRINTLN_EMPTY_STRING),
1767         LintId::of(&write::PRINT_LITERAL),
1768         LintId::of(&write::PRINT_WITH_NEWLINE),
1769         LintId::of(&write::WRITELN_EMPTY_STRING),
1770         LintId::of(&write::WRITE_LITERAL),
1771         LintId::of(&write::WRITE_WITH_NEWLINE),
1772     ]);
1773
1774     store.register_group(true, "clippy::complexity", Some("clippy_complexity"), vec![
1775         LintId::of(&assign_ops::MISREFACTORED_ASSIGN_OP),
1776         LintId::of(&attrs::DEPRECATED_CFG_ATTR),
1777         LintId::of(&booleans::NONMINIMAL_BOOL),
1778         LintId::of(&double_comparison::DOUBLE_COMPARISONS),
1779         LintId::of(&double_parens::DOUBLE_PARENS),
1780         LintId::of(&duration_subsec::DURATION_SUBSEC),
1781         LintId::of(&eval_order_dependence::DIVERGING_SUB_EXPRESSION),
1782         LintId::of(&eval_order_dependence::EVAL_ORDER_DEPENDENCE),
1783         LintId::of(&explicit_write::EXPLICIT_WRITE),
1784         LintId::of(&format::USELESS_FORMAT),
1785         LintId::of(&functions::TOO_MANY_ARGUMENTS),
1786         LintId::of(&get_last_with_len::GET_LAST_WITH_LEN),
1787         LintId::of(&identity_op::IDENTITY_OP),
1788         LintId::of(&int_plus_one::INT_PLUS_ONE),
1789         LintId::of(&lifetimes::EXTRA_UNUSED_LIFETIMES),
1790         LintId::of(&lifetimes::NEEDLESS_LIFETIMES),
1791         LintId::of(&loops::EXPLICIT_COUNTER_LOOP),
1792         LintId::of(&loops::MUT_RANGE_BOUND),
1793         LintId::of(&loops::SINGLE_ELEMENT_LOOP),
1794         LintId::of(&loops::WHILE_LET_LOOP),
1795         LintId::of(&manual_strip::MANUAL_STRIP),
1796         LintId::of(&manual_unwrap_or::MANUAL_UNWRAP_OR),
1797         LintId::of(&map_identity::MAP_IDENTITY),
1798         LintId::of(&map_unit_fn::OPTION_MAP_UNIT_FN),
1799         LintId::of(&map_unit_fn::RESULT_MAP_UNIT_FN),
1800         LintId::of(&matches::MATCH_AS_REF),
1801         LintId::of(&matches::MATCH_SINGLE_BINDING),
1802         LintId::of(&matches::WILDCARD_IN_OR_PATTERNS),
1803         LintId::of(&methods::BIND_INSTEAD_OF_MAP),
1804         LintId::of(&methods::CLONE_ON_COPY),
1805         LintId::of(&methods::FILTER_NEXT),
1806         LintId::of(&methods::FLAT_MAP_IDENTITY),
1807         LintId::of(&methods::OPTION_AS_REF_DEREF),
1808         LintId::of(&methods::SEARCH_IS_SOME),
1809         LintId::of(&methods::SKIP_WHILE_NEXT),
1810         LintId::of(&methods::SUSPICIOUS_MAP),
1811         LintId::of(&methods::UNNECESSARY_FILTER_MAP),
1812         LintId::of(&methods::USELESS_ASREF),
1813         LintId::of(&misc::SHORT_CIRCUIT_STATEMENT),
1814         LintId::of(&misc_early::UNNEEDED_WILDCARD_PATTERN),
1815         LintId::of(&misc_early::ZERO_PREFIXED_LITERAL),
1816         LintId::of(&needless_arbitrary_self_type::NEEDLESS_ARBITRARY_SELF_TYPE),
1817         LintId::of(&needless_bool::BOOL_COMPARISON),
1818         LintId::of(&needless_bool::NEEDLESS_BOOL),
1819         LintId::of(&needless_borrowed_ref::NEEDLESS_BORROWED_REFERENCE),
1820         LintId::of(&needless_question_mark::NEEDLESS_QUESTION_MARK),
1821         LintId::of(&needless_update::NEEDLESS_UPDATE),
1822         LintId::of(&neg_cmp_op_on_partial_ord::NEG_CMP_OP_ON_PARTIAL_ORD),
1823         LintId::of(&no_effect::NO_EFFECT),
1824         LintId::of(&no_effect::UNNECESSARY_OPERATION),
1825         LintId::of(&overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL),
1826         LintId::of(&partialeq_ne_impl::PARTIALEQ_NE_IMPL),
1827         LintId::of(&precedence::PRECEDENCE),
1828         LintId::of(&ptr_offset_with_cast::PTR_OFFSET_WITH_CAST),
1829         LintId::of(&ranges::RANGE_ZIP_WITH_LEN),
1830         LintId::of(&redundant_closure_call::REDUNDANT_CLOSURE_CALL),
1831         LintId::of(&reference::DEREF_ADDROF),
1832         LintId::of(&reference::REF_IN_DEREF),
1833         LintId::of(&repeat_once::REPEAT_ONCE),
1834         LintId::of(&strings::STRING_FROM_UTF8_AS_BYTES),
1835         LintId::of(&swap::MANUAL_SWAP),
1836         LintId::of(&temporary_assignment::TEMPORARY_ASSIGNMENT),
1837         LintId::of(&transmute::CROSSPOINTER_TRANSMUTE),
1838         LintId::of(&transmute::TRANSMUTES_EXPRESSIBLE_AS_PTR_CASTS),
1839         LintId::of(&transmute::TRANSMUTE_BYTES_TO_STR),
1840         LintId::of(&transmute::TRANSMUTE_FLOAT_TO_INT),
1841         LintId::of(&transmute::TRANSMUTE_INT_TO_BOOL),
1842         LintId::of(&transmute::TRANSMUTE_INT_TO_CHAR),
1843         LintId::of(&transmute::TRANSMUTE_INT_TO_FLOAT),
1844         LintId::of(&transmute::TRANSMUTE_PTR_TO_PTR),
1845         LintId::of(&transmute::TRANSMUTE_PTR_TO_REF),
1846         LintId::of(&types::BORROWED_BOX),
1847         LintId::of(&types::CHAR_LIT_AS_U8),
1848         LintId::of(&types::TYPE_COMPLEXITY),
1849         LintId::of(&types::UNIT_ARG),
1850         LintId::of(&types::UNNECESSARY_CAST),
1851         LintId::of(&types::VEC_BOX),
1852         LintId::of(&unnecessary_sort_by::UNNECESSARY_SORT_BY),
1853         LintId::of(&unnecessary_wraps::UNNECESSARY_WRAPS),
1854         LintId::of(&unwrap::UNNECESSARY_UNWRAP),
1855         LintId::of(&useless_conversion::USELESS_CONVERSION),
1856         LintId::of(&zero_div_zero::ZERO_DIVIDED_BY_ZERO),
1857     ]);
1858
1859     store.register_group(true, "clippy::correctness", Some("clippy_correctness"), vec![
1860         LintId::of(&approx_const::APPROX_CONSTANT),
1861         LintId::of(&async_yields_async::ASYNC_YIELDS_ASYNC),
1862         LintId::of(&atomic_ordering::INVALID_ATOMIC_ORDERING),
1863         LintId::of(&attrs::DEPRECATED_SEMVER),
1864         LintId::of(&attrs::MISMATCHED_TARGET_OS),
1865         LintId::of(&attrs::USELESS_ATTRIBUTE),
1866         LintId::of(&bit_mask::BAD_BIT_MASK),
1867         LintId::of(&bit_mask::INEFFECTIVE_BIT_MASK),
1868         LintId::of(&booleans::LOGIC_BUG),
1869         LintId::of(&copies::IFS_SAME_COND),
1870         LintId::of(&copies::IF_SAME_THEN_ELSE),
1871         LintId::of(&derive::DERIVE_HASH_XOR_EQ),
1872         LintId::of(&derive::DERIVE_ORD_XOR_PARTIAL_ORD),
1873         LintId::of(&drop_forget_ref::DROP_COPY),
1874         LintId::of(&drop_forget_ref::DROP_REF),
1875         LintId::of(&drop_forget_ref::FORGET_COPY),
1876         LintId::of(&drop_forget_ref::FORGET_REF),
1877         LintId::of(&enum_clike::ENUM_CLIKE_UNPORTABLE_VARIANT),
1878         LintId::of(&eq_op::EQ_OP),
1879         LintId::of(&erasing_op::ERASING_OP),
1880         LintId::of(&float_equality_without_abs::FLOAT_EQUALITY_WITHOUT_ABS),
1881         LintId::of(&formatting::POSSIBLE_MISSING_COMMA),
1882         LintId::of(&functions::NOT_UNSAFE_PTR_ARG_DEREF),
1883         LintId::of(&if_let_mutex::IF_LET_MUTEX),
1884         LintId::of(&indexing_slicing::OUT_OF_BOUNDS_INDEXING),
1885         LintId::of(&infinite_iter::INFINITE_ITER),
1886         LintId::of(&inherent_to_string::INHERENT_TO_STRING_SHADOW_DISPLAY),
1887         LintId::of(&inline_fn_without_body::INLINE_FN_WITHOUT_BODY),
1888         LintId::of(&let_underscore::LET_UNDERSCORE_LOCK),
1889         LintId::of(&literal_representation::MISTYPED_LITERAL_SUFFIXES),
1890         LintId::of(&loops::FOR_LOOPS_OVER_FALLIBLES),
1891         LintId::of(&loops::ITER_NEXT_LOOP),
1892         LintId::of(&loops::NEVER_LOOP),
1893         LintId::of(&loops::WHILE_IMMUTABLE_CONDITION),
1894         LintId::of(&mem_discriminant::MEM_DISCRIMINANT_NON_ENUM),
1895         LintId::of(&mem_replace::MEM_REPLACE_WITH_UNINIT),
1896         LintId::of(&methods::CLONE_DOUBLE_REF),
1897         LintId::of(&methods::ITERATOR_STEP_BY_ZERO),
1898         LintId::of(&methods::UNINIT_ASSUMED_INIT),
1899         LintId::of(&methods::ZST_OFFSET),
1900         LintId::of(&minmax::MIN_MAX),
1901         LintId::of(&misc::CMP_NAN),
1902         LintId::of(&misc::FLOAT_CMP),
1903         LintId::of(&misc::MODULO_ONE),
1904         LintId::of(&mut_key::MUTABLE_KEY_TYPE),
1905         LintId::of(&open_options::NONSENSICAL_OPEN_OPTIONS),
1906         LintId::of(&option_env_unwrap::OPTION_ENV_UNWRAP),
1907         LintId::of(&ptr::MUT_FROM_REF),
1908         LintId::of(&ranges::REVERSED_EMPTY_RANGES),
1909         LintId::of(&regex::INVALID_REGEX),
1910         LintId::of(&self_assignment::SELF_ASSIGNMENT),
1911         LintId::of(&serde_api::SERDE_API_MISUSE),
1912         LintId::of(&size_of_in_element_count::SIZE_OF_IN_ELEMENT_COUNT),
1913         LintId::of(&suspicious_trait_impl::SUSPICIOUS_ARITHMETIC_IMPL),
1914         LintId::of(&suspicious_trait_impl::SUSPICIOUS_OP_ASSIGN_IMPL),
1915         LintId::of(&swap::ALMOST_SWAPPED),
1916         LintId::of(&to_string_in_display::TO_STRING_IN_DISPLAY),
1917         LintId::of(&transmute::UNSOUND_COLLECTION_TRANSMUTE),
1918         LintId::of(&transmute::WRONG_TRANSMUTE),
1919         LintId::of(&transmuting_null::TRANSMUTING_NULL),
1920         LintId::of(&types::ABSURD_EXTREME_COMPARISONS),
1921         LintId::of(&types::CAST_REF_TO_MUT),
1922         LintId::of(&types::UNIT_CMP),
1923         LintId::of(&undropped_manually_drops::UNDROPPED_MANUALLY_DROPS),
1924         LintId::of(&unicode::INVISIBLE_CHARACTERS),
1925         LintId::of(&unit_return_expecting_ord::UNIT_RETURN_EXPECTING_ORD),
1926         LintId::of(&unnamed_address::FN_ADDRESS_COMPARISONS),
1927         LintId::of(&unnamed_address::VTABLE_ADDRESS_COMPARISONS),
1928         LintId::of(&unused_io_amount::UNUSED_IO_AMOUNT),
1929         LintId::of(&unwrap::PANICKING_UNWRAP),
1930         LintId::of(&vec_resize_to_zero::VEC_RESIZE_TO_ZERO),
1931     ]);
1932
1933     store.register_group(true, "clippy::perf", Some("clippy_perf"), vec![
1934         LintId::of(&bytecount::NAIVE_BYTECOUNT),
1935         LintId::of(&entry::MAP_ENTRY),
1936         LintId::of(&escape::BOXED_LOCAL),
1937         LintId::of(&large_const_arrays::LARGE_CONST_ARRAYS),
1938         LintId::of(&large_enum_variant::LARGE_ENUM_VARIANT),
1939         LintId::of(&loops::MANUAL_MEMCPY),
1940         LintId::of(&loops::NEEDLESS_COLLECT),
1941         LintId::of(&methods::EXPECT_FUN_CALL),
1942         LintId::of(&methods::ITER_NTH),
1943         LintId::of(&methods::OR_FUN_CALL),
1944         LintId::of(&methods::SINGLE_CHAR_PATTERN),
1945         LintId::of(&misc::CMP_OWNED),
1946         LintId::of(&mutex_atomic::MUTEX_ATOMIC),
1947         LintId::of(&redundant_clone::REDUNDANT_CLONE),
1948         LintId::of(&slow_vector_initialization::SLOW_VECTOR_INITIALIZATION),
1949         LintId::of(&stable_sort_primitive::STABLE_SORT_PRIMITIVE),
1950         LintId::of(&types::BOX_VEC),
1951         LintId::of(&types::REDUNDANT_ALLOCATION),
1952         LintId::of(&vec::USELESS_VEC),
1953         LintId::of(&vec_init_then_push::VEC_INIT_THEN_PUSH),
1954     ]);
1955
1956     store.register_group(true, "clippy::cargo", Some("clippy_cargo"), vec![
1957         LintId::of(&cargo_common_metadata::CARGO_COMMON_METADATA),
1958         LintId::of(&multiple_crate_versions::MULTIPLE_CRATE_VERSIONS),
1959         LintId::of(&wildcard_dependencies::WILDCARD_DEPENDENCIES),
1960     ]);
1961
1962     store.register_group(true, "clippy::nursery", Some("clippy_nursery"), vec![
1963         LintId::of(&attrs::EMPTY_LINE_AFTER_OUTER_ATTR),
1964         LintId::of(&cognitive_complexity::COGNITIVE_COMPLEXITY),
1965         LintId::of(&disallowed_method::DISALLOWED_METHOD),
1966         LintId::of(&fallible_impl_from::FALLIBLE_IMPL_FROM),
1967         LintId::of(&floating_point_arithmetic::IMPRECISE_FLOPS),
1968         LintId::of(&floating_point_arithmetic::SUBOPTIMAL_FLOPS),
1969         LintId::of(&future_not_send::FUTURE_NOT_SEND),
1970         LintId::of(&let_if_seq::USELESS_LET_IF_SEQ),
1971         LintId::of(&missing_const_for_fn::MISSING_CONST_FOR_FN),
1972         LintId::of(&mutable_debug_assertion::DEBUG_ASSERT_WITH_MUT_CALL),
1973         LintId::of(&mutex_atomic::MUTEX_INTEGER),
1974         LintId::of(&needless_borrow::NEEDLESS_BORROW),
1975         LintId::of(&path_buf_push_overwrite::PATH_BUF_PUSH_OVERWRITE),
1976         LintId::of(&redundant_pub_crate::REDUNDANT_PUB_CRATE),
1977         LintId::of(&strings::STRING_LIT_AS_BYTES),
1978         LintId::of(&transmute::USELESS_TRANSMUTE),
1979         LintId::of(&use_self::USE_SELF),
1980     ]);
1981 }
1982
1983 #[rustfmt::skip]
1984 fn register_removed_non_tool_lints(store: &mut rustc_lint::LintStore) {
1985     store.register_removed(
1986         "should_assert_eq",
1987         "`assert!()` will be more flexible with RFC 2011",
1988     );
1989     store.register_removed(
1990         "extend_from_slice",
1991         "`.extend_from_slice(_)` is a faster way to extend a Vec by a slice",
1992     );
1993     store.register_removed(
1994         "range_step_by_zero",
1995         "`iterator.step_by(0)` panics nowadays",
1996     );
1997     store.register_removed(
1998         "unstable_as_slice",
1999         "`Vec::as_slice` has been stabilized in 1.7",
2000     );
2001     store.register_removed(
2002         "unstable_as_mut_slice",
2003         "`Vec::as_mut_slice` has been stabilized in 1.7",
2004     );
2005     store.register_removed(
2006         "misaligned_transmute",
2007         "this lint has been split into cast_ptr_alignment and transmute_ptr_to_ptr",
2008     );
2009     store.register_removed(
2010         "assign_ops",
2011         "using compound assignment operators (e.g., `+=`) is harmless",
2012     );
2013     store.register_removed(
2014         "if_let_redundant_pattern_matching",
2015         "this lint has been changed to redundant_pattern_matching",
2016     );
2017     store.register_removed(
2018         "unsafe_vector_initialization",
2019         "the replacement suggested by this lint had substantially different behavior",
2020     );
2021     store.register_removed(
2022         "reverse_range_loop",
2023         "this lint is now included in reversed_empty_ranges",
2024     );
2025 }
2026
2027 /// Register renamed lints.
2028 ///
2029 /// Used in `./src/driver.rs`.
2030 pub fn register_renamed(ls: &mut rustc_lint::LintStore) {
2031     ls.register_renamed("clippy::stutter", "clippy::module_name_repetitions");
2032     ls.register_renamed("clippy::new_without_default_derive", "clippy::new_without_default");
2033     ls.register_renamed("clippy::cyclomatic_complexity", "clippy::cognitive_complexity");
2034     ls.register_renamed("clippy::const_static_lifetime", "clippy::redundant_static_lifetimes");
2035     ls.register_renamed("clippy::option_and_then_some", "clippy::bind_instead_of_map");
2036     ls.register_renamed("clippy::block_in_if_condition_expr", "clippy::blocks_in_if_conditions");
2037     ls.register_renamed("clippy::block_in_if_condition_stmt", "clippy::blocks_in_if_conditions");
2038     ls.register_renamed("clippy::option_map_unwrap_or", "clippy::map_unwrap_or");
2039     ls.register_renamed("clippy::option_map_unwrap_or_else", "clippy::map_unwrap_or");
2040     ls.register_renamed("clippy::result_map_unwrap_or_else", "clippy::map_unwrap_or");
2041     ls.register_renamed("clippy::option_unwrap_used", "clippy::unwrap_used");
2042     ls.register_renamed("clippy::result_unwrap_used", "clippy::unwrap_used");
2043     ls.register_renamed("clippy::option_expect_used", "clippy::expect_used");
2044     ls.register_renamed("clippy::result_expect_used", "clippy::expect_used");
2045     ls.register_renamed("clippy::for_loop_over_option", "clippy::for_loops_over_fallibles");
2046     ls.register_renamed("clippy::for_loop_over_result", "clippy::for_loops_over_fallibles");
2047     ls.register_renamed("clippy::identity_conversion", "clippy::useless_conversion");
2048     ls.register_renamed("clippy::zero_width_space", "clippy::invisible_characters");
2049     ls.register_renamed("clippy::single_char_push_str", "clippy::single_char_add_str");
2050 }
2051
2052 // only exists to let the dogfood integration test works.
2053 // Don't run clippy as an executable directly
2054 #[allow(dead_code)]
2055 fn main() {
2056     panic!("Please use the cargo-clippy executable");
2057 }