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