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