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