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