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