2016-05-24 11:25:25 -05:00
|
|
|
|
// error-pattern:cargo-clippy
|
|
|
|
|
|
2016-06-06 10:09:51 -05:00
|
|
|
|
#![feature(box_syntax)]
|
2017-06-15 22:30:55 -05:00
|
|
|
|
#![feature(alloc)]
|
2016-05-24 11:25:25 -05:00
|
|
|
|
#![feature(custom_attribute)]
|
2017-01-04 11:05:33 -06:00
|
|
|
|
#![feature(i128_type)]
|
2017-01-13 10:04:56 -06:00
|
|
|
|
#![feature(i128)]
|
2016-06-06 10:09:51 -05:00
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
#![feature(slice_patterns)]
|
2016-05-24 11:25:25 -05:00
|
|
|
|
#![feature(stmt_expr_attributes)]
|
2017-01-04 15:46:41 -06:00
|
|
|
|
#![feature(conservative_impl_trait)]
|
2016-05-24 11:25:25 -05:00
|
|
|
|
|
2016-08-23 11:09:37 -05:00
|
|
|
|
#![allow(indexing_slicing, shadow_reuse, unknown_lints, missing_docs_in_private_items)]
|
2016-05-24 11:25:25 -05:00
|
|
|
|
|
|
|
|
|
extern crate syntax;
|
2017-02-12 06:53:30 -06:00
|
|
|
|
extern crate syntax_pos;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate rustc;
|
2017-01-13 10:04:56 -06:00
|
|
|
|
extern crate rustc_data_structures;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
|
|
|
|
|
extern crate toml;
|
|
|
|
|
|
|
|
|
|
// Only for the compile time checking of paths
|
|
|
|
|
extern crate core;
|
2017-06-15 22:30:55 -05:00
|
|
|
|
extern crate alloc;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
|
|
|
|
|
// for unicode nfc normalization
|
|
|
|
|
extern crate unicode_normalization;
|
|
|
|
|
|
|
|
|
|
// for semver check in attrs.rs
|
|
|
|
|
extern crate semver;
|
|
|
|
|
|
|
|
|
|
// for regex checking
|
|
|
|
|
extern crate regex_syntax;
|
|
|
|
|
|
|
|
|
|
// for finding minimal boolean expressions
|
|
|
|
|
extern crate quine_mc_cluskey;
|
|
|
|
|
|
2016-07-01 11:38:50 -05:00
|
|
|
|
extern crate rustc_errors;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
extern crate rustc_plugin;
|
|
|
|
|
extern crate rustc_const_eval;
|
|
|
|
|
extern crate rustc_const_math;
|
|
|
|
|
|
2016-06-05 13:19:00 -05:00
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate matches as matches_macro;
|
|
|
|
|
|
2017-05-09 08:23:38 -05:00
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
extern crate serde;
|
|
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
|
2017-05-28 17:11:58 -05:00
|
|
|
|
extern crate itertools;
|
|
|
|
|
extern crate pulldown_cmark;
|
|
|
|
|
|
2016-05-24 11:25:25 -05:00
|
|
|
|
macro_rules! declare_restriction_lint {
|
|
|
|
|
{ pub $name:tt, $description:tt } => {
|
|
|
|
|
declare_lint! { pub $name, Allow, $description }
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub mod consts;
|
|
|
|
|
#[macro_use]
|
|
|
|
|
pub mod utils;
|
|
|
|
|
|
|
|
|
|
// begin lints modules, do not remove this comment, it’s used in `update_lints`
|
|
|
|
|
pub mod approx_const;
|
|
|
|
|
pub mod arithmetic;
|
|
|
|
|
pub mod array_indexing;
|
|
|
|
|
pub mod assign_ops;
|
|
|
|
|
pub mod attrs;
|
|
|
|
|
pub mod bit_mask;
|
|
|
|
|
pub mod blacklisted_name;
|
|
|
|
|
pub mod block_in_if_condition;
|
|
|
|
|
pub mod booleans;
|
2017-08-22 16:45:08 -05:00
|
|
|
|
pub mod bytecount;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod collapsible_if;
|
|
|
|
|
pub mod copies;
|
|
|
|
|
pub mod cyclomatic_complexity;
|
|
|
|
|
pub mod derive;
|
|
|
|
|
pub mod doc;
|
2016-12-28 12:54:23 -06:00
|
|
|
|
pub mod double_parens;
|
2016-12-29 21:43:22 -06:00
|
|
|
|
pub mod drop_forget_ref;
|
2017-02-04 22:07:54 -06:00
|
|
|
|
pub mod empty_enum;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod entry;
|
|
|
|
|
pub mod enum_clike;
|
|
|
|
|
pub mod enum_glob_use;
|
|
|
|
|
pub mod enum_variants;
|
|
|
|
|
pub mod eq_op;
|
|
|
|
|
pub mod escape;
|
|
|
|
|
pub mod eta_reduction;
|
2016-08-10 22:16:28 -05:00
|
|
|
|
pub mod eval_order_dependence;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod format;
|
|
|
|
|
pub mod formatting;
|
|
|
|
|
pub mod functions;
|
|
|
|
|
pub mod identity_op;
|
2016-10-29 11:56:12 -05:00
|
|
|
|
pub mod if_let_redundant_pattern_matching;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod if_not_else;
|
|
|
|
|
pub mod items_after_statements;
|
2017-01-30 06:17:56 -06:00
|
|
|
|
pub mod large_enum_variant;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod len_zero;
|
2016-03-30 12:53:43 -05:00
|
|
|
|
pub mod let_if_seq;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod lifetimes;
|
2017-07-19 18:56:32 -05:00
|
|
|
|
pub mod literal_digit_grouping;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod loops;
|
|
|
|
|
pub mod map_clone;
|
|
|
|
|
pub mod matches;
|
|
|
|
|
pub mod mem_forget;
|
|
|
|
|
pub mod methods;
|
|
|
|
|
pub mod minmax;
|
|
|
|
|
pub mod misc;
|
|
|
|
|
pub mod misc_early;
|
2016-08-23 11:09:37 -05:00
|
|
|
|
pub mod missing_doc;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod mut_mut;
|
|
|
|
|
pub mod mut_reference;
|
|
|
|
|
pub mod mutex_atomic;
|
|
|
|
|
pub mod needless_bool;
|
|
|
|
|
pub mod needless_borrow;
|
2017-06-24 05:04:56 -05:00
|
|
|
|
pub mod needless_borrowed_ref;
|
2016-08-21 16:18:58 -05:00
|
|
|
|
pub mod needless_continue;
|
2017-04-27 07:11:35 -05:00
|
|
|
|
pub mod needless_pass_by_value;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod needless_update;
|
|
|
|
|
pub mod neg_multiply;
|
|
|
|
|
pub mod new_without_default;
|
|
|
|
|
pub mod no_effect;
|
|
|
|
|
pub mod non_expressive_names;
|
2016-10-02 15:39:28 -05:00
|
|
|
|
pub mod ok_if_let;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod open_options;
|
|
|
|
|
pub mod overflow_check_conditional;
|
|
|
|
|
pub mod panic;
|
2016-10-29 20:33:57 -05:00
|
|
|
|
pub mod partialeq_ne_impl;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod precedence;
|
|
|
|
|
pub mod print;
|
2016-08-22 11:29:29 -05:00
|
|
|
|
pub mod ptr;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod ranges;
|
2016-11-22 12:22:37 -06:00
|
|
|
|
pub mod reference;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod regex;
|
|
|
|
|
pub mod returns;
|
2017-05-09 08:23:10 -05:00
|
|
|
|
pub mod serde_api;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod shadow;
|
2017-02-17 02:32:51 -06:00
|
|
|
|
pub mod should_assert_eq;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod strings;
|
|
|
|
|
pub mod swap;
|
|
|
|
|
pub mod temporary_assignment;
|
|
|
|
|
pub mod transmute;
|
|
|
|
|
pub mod types;
|
|
|
|
|
pub mod unicode;
|
|
|
|
|
pub mod unsafe_removed_from_name;
|
2017-01-07 05:35:45 -06:00
|
|
|
|
pub mod unused_io_amount;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod unused_label;
|
2017-07-28 06:28:07 -05:00
|
|
|
|
pub mod use_self;
|
2016-05-24 11:25:25 -05:00
|
|
|
|
pub mod vec;
|
|
|
|
|
pub mod zero_div_zero;
|
|
|
|
|
// end lints modules, do not remove this comment, it’s used in `update_lints`
|
|
|
|
|
|
|
|
|
|
mod reexport {
|
|
|
|
|
pub use syntax::ast::{Name, NodeId};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
|
pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
|
2016-10-25 12:41:24 -05:00
|
|
|
|
let conf = match utils::conf::file_from_args(reg.args()) {
|
2016-05-24 11:25:25 -05:00
|
|
|
|
Ok(file_name) => {
|
|
|
|
|
// if the user specified a file, it must exist, otherwise default to `clippy.toml` but
|
|
|
|
|
// do not require the file to exist
|
2016-10-25 12:41:24 -05:00
|
|
|
|
let file_name = if let Some(file_name) = file_name {
|
|
|
|
|
Some(file_name)
|
2016-05-24 11:25:25 -05:00
|
|
|
|
} else {
|
2016-10-25 12:41:24 -05:00
|
|
|
|
match utils::conf::lookup_conf_file() {
|
|
|
|
|
Ok(path) => path,
|
|
|
|
|
Err(error) => {
|
|
|
|
|
reg.sess.struct_err(&format!("error reading Clippy's configuration file: {}", error)).emit();
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-05-24 11:25:25 -05:00
|
|
|
|
};
|
|
|
|
|
|
2016-10-25 12:41:24 -05:00
|
|
|
|
let (conf, errors) = utils::conf::read(file_name.as_ref().map(|p| p.as_ref()));
|
2016-05-24 11:25:25 -05:00
|
|
|
|
|
|
|
|
|
// all conf errors are non-fatal, we just use the default conf in case of error
|
|
|
|
|
for error in errors {
|
|
|
|
|
reg.sess.struct_err(&format!("error reading Clippy's configuration file: {}", error)).emit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
conf
|
|
|
|
|
}
|
|
|
|
|
Err((err, span)) => {
|
|
|
|
|
reg.sess.struct_span_err(span, err)
|
|
|
|
|
.span_note(span, "Clippy will use default configuration")
|
|
|
|
|
.emit();
|
2017-05-09 08:23:38 -05:00
|
|
|
|
toml::from_str("").expect("we never error on empty config files")
|
2016-05-24 11:25:25 -05:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let mut store = reg.sess.lint_store.borrow_mut();
|
2017-01-14 07:39:41 -06:00
|
|
|
|
store.register_removed(
|
|
|
|
|
"extend_from_slice",
|
|
|
|
|
"`.extend_from_slice(_)` is a faster way to extend a Vec by a slice",
|
|
|
|
|
);
|
2017-06-18 08:14:46 -05:00
|
|
|
|
store.register_removed(
|
|
|
|
|
"range_step_by_zero",
|
|
|
|
|
"`iterator.step_by(0)` panics nowadays",
|
|
|
|
|
);
|
2016-12-21 05:50:39 -06:00
|
|
|
|
store.register_removed(
|
|
|
|
|
"unstable_as_slice",
|
|
|
|
|
"`Vec::as_slice` has been stabilized in 1.7",
|
|
|
|
|
);
|
|
|
|
|
store.register_removed(
|
|
|
|
|
"unstable_as_mut_slice",
|
|
|
|
|
"`Vec::as_mut_slice` has been stabilized in 1.7",
|
|
|
|
|
);
|
|
|
|
|
store.register_removed(
|
|
|
|
|
"str_to_string",
|
|
|
|
|
"using `str::to_string` is common even today and specialization will likely happen soon",
|
|
|
|
|
);
|
|
|
|
|
store.register_removed(
|
|
|
|
|
"string_to_string",
|
|
|
|
|
"using `string::to_string` is common even today and specialization will likely happen soon",
|
|
|
|
|
);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
// end deprecated lints, do not remove this comment, it’s used in `update_lints`
|
|
|
|
|
|
2017-05-09 08:23:10 -05:00
|
|
|
|
reg.register_late_lint_pass(box serde_api::Serde);
|
2016-07-18 04:19:33 -05:00
|
|
|
|
reg.register_early_lint_pass(box utils::internal_lints::Clippy);
|
2016-09-01 02:07:37 -05:00
|
|
|
|
reg.register_late_lint_pass(box utils::internal_lints::LintWithoutLintPass::default());
|
2016-10-18 09:57:39 -05:00
|
|
|
|
reg.register_late_lint_pass(box utils::inspector::Pass);
|
2017-07-03 08:24:52 -05:00
|
|
|
|
reg.register_late_lint_pass(box utils::author::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box types::TypePass);
|
|
|
|
|
reg.register_late_lint_pass(box booleans::NonminimalBool);
|
|
|
|
|
reg.register_late_lint_pass(box eq_op::EqOp);
|
2016-08-06 13:59:27 -05:00
|
|
|
|
reg.register_early_lint_pass(box enum_variants::EnumVariantNames::new(conf.enum_variant_name_threshold));
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box enum_glob_use::EnumGlobUse);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box enum_clike::UnportableVariant);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box bit_mask::BitMask);
|
2016-08-22 11:29:29 -05:00
|
|
|
|
reg.register_late_lint_pass(box ptr::PointerPass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box needless_bool::NeedlessBool);
|
|
|
|
|
reg.register_late_lint_pass(box needless_bool::BoolComparison);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box approx_const::Pass);
|
2016-08-24 14:47:46 -05:00
|
|
|
|
reg.register_late_lint_pass(box misc::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_early_lint_pass(box precedence::Precedence);
|
2016-08-21 16:18:58 -05:00
|
|
|
|
reg.register_early_lint_pass(box needless_continue::NeedlessContinue);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box eta_reduction::EtaPass);
|
|
|
|
|
reg.register_late_lint_pass(box identity_op::IdentityOp);
|
|
|
|
|
reg.register_early_lint_pass(box items_after_statements::ItemsAfterStatements);
|
|
|
|
|
reg.register_late_lint_pass(box mut_mut::MutMut);
|
|
|
|
|
reg.register_late_lint_pass(box mut_reference::UnnecessaryMutPassed);
|
|
|
|
|
reg.register_late_lint_pass(box len_zero::LenZero);
|
|
|
|
|
reg.register_late_lint_pass(box attrs::AttrPass);
|
2016-06-21 16:17:18 -05:00
|
|
|
|
reg.register_early_lint_pass(box collapsible_if::CollapsibleIf);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box block_in_if_condition::BlockInIfCondition);
|
|
|
|
|
reg.register_late_lint_pass(box unicode::Unicode);
|
|
|
|
|
reg.register_late_lint_pass(box strings::StringAdd);
|
|
|
|
|
reg.register_early_lint_pass(box returns::ReturnPass);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box methods::Pass);
|
|
|
|
|
reg.register_late_lint_pass(box shadow::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box types::LetPass);
|
|
|
|
|
reg.register_late_lint_pass(box types::UnitCmp);
|
2017-07-31 17:58:26 -05:00
|
|
|
|
reg.register_late_lint_pass(box loops::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box lifetimes::LifetimePass);
|
|
|
|
|
reg.register_late_lint_pass(box entry::HashMapLint);
|
|
|
|
|
reg.register_late_lint_pass(box ranges::StepByZero);
|
|
|
|
|
reg.register_late_lint_pass(box types::CastPass);
|
|
|
|
|
reg.register_late_lint_pass(box types::TypeComplexityPass::new(conf.type_complexity_threshold));
|
|
|
|
|
reg.register_late_lint_pass(box matches::MatchPass);
|
|
|
|
|
reg.register_late_lint_pass(box minmax::MinMaxPass);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box open_options::NonSensical);
|
|
|
|
|
reg.register_late_lint_pass(box zero_div_zero::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box mutex_atomic::MutexAtomic);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box needless_update::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box needless_borrow::NeedlessBorrow);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box no_effect::Pass);
|
|
|
|
|
reg.register_late_lint_pass(box map_clone::Pass);
|
|
|
|
|
reg.register_late_lint_pass(box temporary_assignment::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box transmute::Transmute);
|
2016-12-21 05:30:41 -06:00
|
|
|
|
reg.register_late_lint_pass(
|
|
|
|
|
box cyclomatic_complexity::CyclomaticComplexity::new(conf.cyclomatic_complexity_threshold)
|
|
|
|
|
);
|
2016-07-10 08:23:50 -05:00
|
|
|
|
reg.register_late_lint_pass(box escape::Pass{too_large_for_stack: conf.too_large_for_stack});
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_early_lint_pass(box misc_early::MiscEarly);
|
|
|
|
|
reg.register_late_lint_pass(box array_indexing::ArrayIndexing);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box panic::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box strings::StringLitAsBytes);
|
|
|
|
|
reg.register_late_lint_pass(box derive::Derive);
|
|
|
|
|
reg.register_late_lint_pass(box types::CharLitAsU8);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box print::Pass);
|
|
|
|
|
reg.register_late_lint_pass(box vec::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_early_lint_pass(box non_expressive_names::NonExpressiveNames {
|
2017-05-09 08:23:38 -05:00
|
|
|
|
single_char_binding_names_threshold: conf.single_char_binding_names_threshold,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
});
|
2016-12-29 21:43:22 -06:00
|
|
|
|
reg.register_late_lint_pass(box drop_forget_ref::Pass);
|
2017-02-04 22:07:54 -06:00
|
|
|
|
reg.register_late_lint_pass(box empty_enum::EmptyEnum);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box types::AbsurdExtremeComparisons);
|
|
|
|
|
reg.register_late_lint_pass(box types::InvalidUpcastComparisons);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box regex::Pass::default());
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box copies::CopyAndPaste);
|
2016-06-10 09:17:20 -05:00
|
|
|
|
reg.register_late_lint_pass(box format::Pass);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_early_lint_pass(box formatting::Formatting);
|
|
|
|
|
reg.register_late_lint_pass(box swap::Swap);
|
|
|
|
|
reg.register_early_lint_pass(box if_not_else::IfNotElse);
|
|
|
|
|
reg.register_late_lint_pass(box overflow_check_conditional::OverflowCheckConditional);
|
|
|
|
|
reg.register_late_lint_pass(box unused_label::UnusedLabel);
|
|
|
|
|
reg.register_late_lint_pass(box new_without_default::NewWithoutDefault);
|
|
|
|
|
reg.register_late_lint_pass(box blacklisted_name::BlackListedName::new(conf.blacklisted_names));
|
|
|
|
|
reg.register_late_lint_pass(box functions::Functions::new(conf.too_many_arguments_threshold));
|
|
|
|
|
reg.register_early_lint_pass(box doc::Doc::new(conf.doc_valid_idents));
|
|
|
|
|
reg.register_late_lint_pass(box neg_multiply::NegMultiply);
|
2016-12-01 15:31:56 -06:00
|
|
|
|
reg.register_early_lint_pass(box unsafe_removed_from_name::UnsafeNameRemoval);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_late_lint_pass(box mem_forget::MemForget);
|
|
|
|
|
reg.register_late_lint_pass(box arithmetic::Arithmetic::default());
|
|
|
|
|
reg.register_late_lint_pass(box assign_ops::AssignOps);
|
2016-03-30 12:53:43 -05:00
|
|
|
|
reg.register_late_lint_pass(box let_if_seq::LetIfSeq);
|
2016-08-10 22:16:28 -05:00
|
|
|
|
reg.register_late_lint_pass(box eval_order_dependence::EvalOrderDependence);
|
2016-08-23 11:09:37 -05:00
|
|
|
|
reg.register_late_lint_pass(box missing_doc::MissingDoc::new());
|
2016-10-06 10:50:11 -05:00
|
|
|
|
reg.register_late_lint_pass(box ok_if_let::Pass);
|
2016-10-29 11:56:12 -05:00
|
|
|
|
reg.register_late_lint_pass(box if_let_redundant_pattern_matching::Pass);
|
2016-10-29 20:33:57 -05:00
|
|
|
|
reg.register_late_lint_pass(box partialeq_ne_impl::Pass);
|
2016-11-25 08:54:07 -06:00
|
|
|
|
reg.register_early_lint_pass(box reference::Pass);
|
2016-12-28 12:54:23 -06:00
|
|
|
|
reg.register_early_lint_pass(box double_parens::DoubleParens);
|
2017-01-07 05:35:45 -06:00
|
|
|
|
reg.register_late_lint_pass(box unused_io_amount::UnusedIoAmount);
|
2017-01-30 06:17:56 -06:00
|
|
|
|
reg.register_late_lint_pass(box large_enum_variant::LargeEnumVariant::new(conf.enum_variant_size_threshold));
|
2017-02-17 02:32:51 -06:00
|
|
|
|
reg.register_late_lint_pass(box should_assert_eq::ShouldAssertEq);
|
2017-02-19 21:50:31 -06:00
|
|
|
|
reg.register_late_lint_pass(box needless_pass_by_value::NeedlessPassByValue);
|
2017-07-19 18:56:32 -05:00
|
|
|
|
reg.register_early_lint_pass(box literal_digit_grouping::LiteralDigitGrouping);
|
2017-07-28 06:28:07 -05:00
|
|
|
|
reg.register_late_lint_pass(box use_self::UseSelf);
|
2017-08-22 16:45:08 -05:00
|
|
|
|
reg.register_late_lint_pass(box bytecount::ByteCount);
|
2016-05-24 11:25:25 -05:00
|
|
|
|
|
|
|
|
|
reg.register_lint_group("clippy_restrictions", vec![
|
|
|
|
|
arithmetic::FLOAT_ARITHMETIC,
|
|
|
|
|
arithmetic::INTEGER_ARITHMETIC,
|
2016-08-06 01:56:28 -05:00
|
|
|
|
array_indexing::INDEXING_SLICING,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
assign_ops::ASSIGN_OPS,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
reg.register_lint_group("clippy_pedantic", vec![
|
|
|
|
|
booleans::NONMINIMAL_BOOL,
|
2017-02-04 22:54:21 -06:00
|
|
|
|
empty_enum::EMPTY_ENUM,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
enum_glob_use::ENUM_GLOB_USE,
|
2016-12-21 06:30:57 -06:00
|
|
|
|
enum_variants::PUB_ENUM_VARIANT_NAMES,
|
2016-06-16 11:37:56 -05:00
|
|
|
|
enum_variants::STUTTER,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
if_not_else::IF_NOT_ELSE,
|
|
|
|
|
items_after_statements::ITEMS_AFTER_STATEMENTS,
|
|
|
|
|
matches::SINGLE_MATCH_ELSE,
|
|
|
|
|
mem_forget::MEM_FORGET,
|
2016-06-21 06:32:34 -05:00
|
|
|
|
methods::FILTER_MAP,
|
2016-10-02 14:23:26 -05:00
|
|
|
|
methods::OPTION_MAP_UNWRAP_OR,
|
|
|
|
|
methods::OPTION_MAP_UNWRAP_OR_ELSE,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
methods::OPTION_UNWRAP_USED,
|
|
|
|
|
methods::RESULT_UNWRAP_USED,
|
|
|
|
|
methods::WRONG_PUB_SELF_CONVENTION,
|
|
|
|
|
misc::USED_UNDERSCORE_BINDING,
|
2016-08-05 11:50:02 -05:00
|
|
|
|
misc_early::UNSEPARATED_LITERAL_SUFFIX,
|
2016-08-23 11:09:37 -05:00
|
|
|
|
missing_doc::MISSING_DOCS_IN_PRIVATE_ITEMS,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
mut_mut::MUT_MUT,
|
|
|
|
|
mutex_atomic::MUTEX_INTEGER,
|
|
|
|
|
non_expressive_names::SIMILAR_NAMES,
|
|
|
|
|
print::PRINT_STDOUT,
|
|
|
|
|
print::USE_DEBUG,
|
|
|
|
|
shadow::SHADOW_REUSE,
|
|
|
|
|
shadow::SHADOW_SAME,
|
|
|
|
|
shadow::SHADOW_UNRELATED,
|
|
|
|
|
strings::STRING_ADD,
|
|
|
|
|
strings::STRING_ADD_ASSIGN,
|
|
|
|
|
types::CAST_POSSIBLE_TRUNCATION,
|
|
|
|
|
types::CAST_POSSIBLE_WRAP,
|
|
|
|
|
types::CAST_PRECISION_LOSS,
|
|
|
|
|
types::CAST_SIGN_LOSS,
|
|
|
|
|
types::INVALID_UPCAST_COMPARISONS,
|
|
|
|
|
unicode::NON_ASCII_LITERAL,
|
|
|
|
|
unicode::UNICODE_NOT_NFC,
|
2017-08-21 02:44:53 -05:00
|
|
|
|
use_self::USE_SELF,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
]);
|
|
|
|
|
|
2016-09-01 02:07:37 -05:00
|
|
|
|
reg.register_lint_group("clippy_internal", vec![
|
|
|
|
|
utils::internal_lints::CLIPPY_LINTS_INTERNAL,
|
|
|
|
|
utils::internal_lints::LINT_WITHOUT_LINT_PASS,
|
|
|
|
|
]);
|
|
|
|
|
|
2016-05-24 11:25:25 -05:00
|
|
|
|
reg.register_lint_group("clippy", vec![
|
|
|
|
|
approx_const::APPROX_CONSTANT,
|
|
|
|
|
array_indexing::OUT_OF_BOUNDS_INDEXING,
|
|
|
|
|
assign_ops::ASSIGN_OP_PATTERN,
|
2016-07-20 10:34:58 -05:00
|
|
|
|
assign_ops::MISREFACTORED_ASSIGN_OP,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
attrs::DEPRECATED_SEMVER,
|
|
|
|
|
attrs::INLINE_ALWAYS,
|
2016-08-17 04:36:04 -05:00
|
|
|
|
attrs::USELESS_ATTRIBUTE,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
bit_mask::BAD_BIT_MASK,
|
|
|
|
|
bit_mask::INEFFECTIVE_BIT_MASK,
|
2017-07-03 09:07:04 -05:00
|
|
|
|
bit_mask::VERBOSE_BIT_MASK,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
blacklisted_name::BLACKLISTED_NAME,
|
|
|
|
|
block_in_if_condition::BLOCK_IN_IF_CONDITION_EXPR,
|
|
|
|
|
block_in_if_condition::BLOCK_IN_IF_CONDITION_STMT,
|
|
|
|
|
booleans::LOGIC_BUG,
|
2017-08-22 16:45:08 -05:00
|
|
|
|
bytecount::NAIVE_BYTECOUNT,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
collapsible_if::COLLAPSIBLE_IF,
|
|
|
|
|
copies::IF_SAME_THEN_ELSE,
|
|
|
|
|
copies::IFS_SAME_COND,
|
|
|
|
|
copies::MATCH_SAME_ARMS,
|
|
|
|
|
cyclomatic_complexity::CYCLOMATIC_COMPLEXITY,
|
|
|
|
|
derive::DERIVE_HASH_XOR_EQ,
|
|
|
|
|
derive::EXPL_IMPL_CLONE_ON_COPY,
|
|
|
|
|
doc::DOC_MARKDOWN,
|
2016-12-28 12:54:23 -06:00
|
|
|
|
double_parens::DOUBLE_PARENS,
|
2017-02-26 20:32:41 -06:00
|
|
|
|
drop_forget_ref::DROP_COPY,
|
2016-12-29 21:43:22 -06:00
|
|
|
|
drop_forget_ref::DROP_REF,
|
2017-02-26 20:32:41 -06:00
|
|
|
|
drop_forget_ref::FORGET_COPY,
|
2016-12-29 21:43:22 -06:00
|
|
|
|
drop_forget_ref::FORGET_REF,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
entry::MAP_ENTRY,
|
|
|
|
|
enum_clike::ENUM_CLIKE_UNPORTABLE_VARIANT,
|
|
|
|
|
enum_variants::ENUM_VARIANT_NAMES,
|
2016-09-12 03:30:42 -05:00
|
|
|
|
enum_variants::MODULE_INCEPTION,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
eq_op::EQ_OP,
|
2017-04-07 04:25:00 -05:00
|
|
|
|
eq_op::OP_REF,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
escape::BOXED_LOCAL,
|
|
|
|
|
eta_reduction::REDUNDANT_CLOSURE,
|
2016-09-06 08:15:36 -05:00
|
|
|
|
eval_order_dependence::DIVERGING_SUB_EXPRESSION,
|
2016-08-10 22:16:28 -05:00
|
|
|
|
eval_order_dependence::EVAL_ORDER_DEPENDENCE,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
format::USELESS_FORMAT,
|
2017-02-04 06:05:25 -06:00
|
|
|
|
formatting::POSSIBLE_MISSING_COMMA,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
formatting::SUSPICIOUS_ASSIGNMENT_FORMATTING,
|
|
|
|
|
formatting::SUSPICIOUS_ELSE_FORMATTING,
|
2016-06-07 09:55:55 -05:00
|
|
|
|
functions::NOT_UNSAFE_PTR_ARG_DEREF,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
functions::TOO_MANY_ARGUMENTS,
|
|
|
|
|
identity_op::IDENTITY_OP,
|
2016-10-29 11:56:12 -05:00
|
|
|
|
if_let_redundant_pattern_matching::IF_LET_REDUNDANT_PATTERN_MATCHING,
|
2017-01-30 06:17:56 -06:00
|
|
|
|
large_enum_variant::LARGE_ENUM_VARIANT,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
len_zero::LEN_WITHOUT_IS_EMPTY,
|
|
|
|
|
len_zero::LEN_ZERO,
|
2016-03-30 12:53:43 -05:00
|
|
|
|
let_if_seq::USELESS_LET_IF_SEQ,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
lifetimes::NEEDLESS_LIFETIMES,
|
|
|
|
|
lifetimes::UNUSED_LIFETIMES,
|
2017-07-19 18:56:32 -05:00
|
|
|
|
literal_digit_grouping::INCONSISTENT_DIGIT_GROUPING,
|
|
|
|
|
literal_digit_grouping::LARGE_DIGIT_GROUPS,
|
2017-08-01 03:18:56 -05:00
|
|
|
|
literal_digit_grouping::UNREADABLE_LITERAL,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
loops::EMPTY_LOOP,
|
|
|
|
|
loops::EXPLICIT_COUNTER_LOOP,
|
2016-09-30 19:50:02 -05:00
|
|
|
|
loops::EXPLICIT_INTO_ITER_LOOP,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
loops::EXPLICIT_ITER_LOOP,
|
|
|
|
|
loops::FOR_KV_MAP,
|
|
|
|
|
loops::FOR_LOOP_OVER_OPTION,
|
|
|
|
|
loops::FOR_LOOP_OVER_RESULT,
|
|
|
|
|
loops::ITER_NEXT_LOOP,
|
|
|
|
|
loops::NEEDLESS_RANGE_LOOP,
|
2017-05-30 20:44:01 -05:00
|
|
|
|
loops::NEVER_LOOP,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
loops::REVERSE_RANGE_LOOP,
|
|
|
|
|
loops::UNUSED_COLLECT,
|
|
|
|
|
loops::WHILE_LET_LOOP,
|
|
|
|
|
loops::WHILE_LET_ON_ITERATOR,
|
|
|
|
|
map_clone::MAP_CLONE,
|
|
|
|
|
matches::MATCH_BOOL,
|
|
|
|
|
matches::MATCH_OVERLAPPING_ARM,
|
|
|
|
|
matches::MATCH_REF_PATS,
|
2017-02-11 00:57:50 -06:00
|
|
|
|
matches::MATCH_WILD_ERR_ARM,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
matches::SINGLE_MATCH,
|
|
|
|
|
methods::CHARS_NEXT_CMP,
|
|
|
|
|
methods::CLONE_DOUBLE_REF,
|
|
|
|
|
methods::CLONE_ON_COPY,
|
|
|
|
|
methods::FILTER_NEXT,
|
2016-11-01 01:43:19 -05:00
|
|
|
|
methods::GET_UNWRAP,
|
2017-02-13 04:40:27 -06:00
|
|
|
|
methods::ITER_CLONED_COLLECT,
|
2016-06-16 04:02:00 -05:00
|
|
|
|
methods::ITER_NTH,
|
2016-10-14 06:35:25 -05:00
|
|
|
|
methods::ITER_SKIP_NEXT,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
methods::NEW_RET_NO_SELF,
|
|
|
|
|
methods::OK_EXPECT,
|
|
|
|
|
methods::OR_FUN_CALL,
|
|
|
|
|
methods::SEARCH_IS_SOME,
|
|
|
|
|
methods::SHOULD_IMPLEMENT_TRAIT,
|
|
|
|
|
methods::SINGLE_CHAR_PATTERN,
|
2016-11-19 09:21:40 -06:00
|
|
|
|
methods::STRING_EXTEND_CHARS,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
methods::TEMPORARY_CSTRING_AS_PTR,
|
|
|
|
|
methods::WRONG_SELF_CONVENTION,
|
|
|
|
|
minmax::MIN_MAX,
|
|
|
|
|
misc::CMP_NAN,
|
|
|
|
|
misc::CMP_OWNED,
|
|
|
|
|
misc::FLOAT_CMP,
|
|
|
|
|
misc::MODULO_ONE,
|
|
|
|
|
misc::REDUNDANT_PATTERN,
|
2016-12-29 17:00:55 -06:00
|
|
|
|
misc::SHORT_CIRCUIT_STATEMENT,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
misc::TOPLEVEL_REF_ARG,
|
2017-03-07 05:58:07 -06:00
|
|
|
|
misc::ZERO_PTR,
|
2016-08-27 18:52:01 -05:00
|
|
|
|
misc_early::BUILTIN_TYPE_SHADOW,
|
2016-06-29 18:00:25 -05:00
|
|
|
|
misc_early::DOUBLE_NEG,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
misc_early::DUPLICATE_UNDERSCORE_ARGUMENT,
|
2016-08-05 11:30:07 -05:00
|
|
|
|
misc_early::MIXED_CASE_HEX_LITERALS,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
misc_early::REDUNDANT_CLOSURE_CALL,
|
|
|
|
|
misc_early::UNNEEDED_FIELD_PATTERN,
|
2016-08-20 11:11:15 -05:00
|
|
|
|
misc_early::ZERO_PREFIXED_LITERAL,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
mut_reference::UNNECESSARY_MUT_PASSED,
|
|
|
|
|
mutex_atomic::MUTEX_ATOMIC,
|
|
|
|
|
needless_bool::BOOL_COMPARISON,
|
|
|
|
|
needless_bool::NEEDLESS_BOOL,
|
|
|
|
|
needless_borrow::NEEDLESS_BORROW,
|
2017-06-24 05:04:56 -05:00
|
|
|
|
needless_borrowed_ref::NEEDLESS_BORROWED_REFERENCE,
|
2016-08-21 16:18:58 -05:00
|
|
|
|
needless_continue::NEEDLESS_CONTINUE,
|
2017-04-27 07:11:35 -05:00
|
|
|
|
needless_pass_by_value::NEEDLESS_PASS_BY_VALUE,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
needless_update::NEEDLESS_UPDATE,
|
|
|
|
|
neg_multiply::NEG_MULTIPLY,
|
|
|
|
|
new_without_default::NEW_WITHOUT_DEFAULT,
|
|
|
|
|
new_without_default::NEW_WITHOUT_DEFAULT_DERIVE,
|
|
|
|
|
no_effect::NO_EFFECT,
|
|
|
|
|
no_effect::UNNECESSARY_OPERATION,
|
|
|
|
|
non_expressive_names::MANY_SINGLE_CHAR_NAMES,
|
2016-10-02 15:39:28 -05:00
|
|
|
|
ok_if_let::IF_LET_SOME_RESULT,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
open_options::NONSENSICAL_OPEN_OPTIONS,
|
|
|
|
|
overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL,
|
|
|
|
|
panic::PANIC_PARAMS,
|
2016-10-29 20:33:57 -05:00
|
|
|
|
partialeq_ne_impl::PARTIALEQ_NE_IMPL,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
precedence::PRECEDENCE,
|
2016-08-05 10:52:58 -05:00
|
|
|
|
print::PRINT_WITH_NEWLINE,
|
2016-08-22 11:29:29 -05:00
|
|
|
|
ptr::CMP_NULL,
|
2017-02-10 12:39:03 -06:00
|
|
|
|
ptr::MUT_FROM_REF,
|
2016-08-22 11:29:29 -05:00
|
|
|
|
ptr::PTR_ARG,
|
2017-06-18 08:14:46 -05:00
|
|
|
|
ranges::ITERATOR_STEP_BY_ZERO,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
ranges::RANGE_ZIP_WITH_LEN,
|
2016-11-22 12:22:37 -06:00
|
|
|
|
reference::DEREF_ADDROF,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
regex::INVALID_REGEX,
|
|
|
|
|
regex::REGEX_MACRO,
|
|
|
|
|
regex::TRIVIAL_REGEX,
|
|
|
|
|
returns::LET_AND_RETURN,
|
|
|
|
|
returns::NEEDLESS_RETURN,
|
2017-05-09 08:23:38 -05:00
|
|
|
|
serde_api::SERDE_API_MISUSE,
|
2017-02-17 02:48:19 -06:00
|
|
|
|
should_assert_eq::SHOULD_ASSERT_EQ,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
strings::STRING_LIT_AS_BYTES,
|
|
|
|
|
swap::ALMOST_SWAPPED,
|
|
|
|
|
swap::MANUAL_SWAP,
|
|
|
|
|
temporary_assignment::TEMPORARY_ASSIGNMENT,
|
|
|
|
|
transmute::CROSSPOINTER_TRANSMUTE,
|
|
|
|
|
transmute::TRANSMUTE_PTR_TO_REF,
|
|
|
|
|
transmute::USELESS_TRANSMUTE,
|
2016-06-28 07:08:08 -05:00
|
|
|
|
transmute::WRONG_TRANSMUTE,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
types::ABSURD_EXTREME_COMPARISONS,
|
2017-01-31 22:19:33 -06:00
|
|
|
|
types::BORROWED_BOX,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
types::BOX_VEC,
|
|
|
|
|
types::CHAR_LIT_AS_U8,
|
|
|
|
|
types::LET_UNIT_VALUE,
|
|
|
|
|
types::LINKEDLIST,
|
|
|
|
|
types::TYPE_COMPLEXITY,
|
|
|
|
|
types::UNIT_CMP,
|
2017-02-16 08:55:41 -06:00
|
|
|
|
types::UNNECESSARY_CAST,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
unicode::ZERO_WIDTH_SPACE,
|
|
|
|
|
unsafe_removed_from_name::UNSAFE_REMOVED_FROM_NAME,
|
2017-01-07 05:35:45 -06:00
|
|
|
|
unused_io_amount::UNUSED_IO_AMOUNT,
|
2016-05-24 11:25:25 -05:00
|
|
|
|
unused_label::UNUSED_LABEL,
|
|
|
|
|
vec::USELESS_VEC,
|
|
|
|
|
zero_div_zero::ZERO_DIVIDED_BY_ZERO,
|
|
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// only exists to let the dogfood integration test works.
|
|
|
|
|
// Don't run clippy as an executable directly
|
|
|
|
|
#[allow(dead_code, print_stdout)]
|
|
|
|
|
fn main() {
|
|
|
|
|
panic!("Please use the cargo-clippy executable");
|
|
|
|
|
}
|