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