2016-02-22 13:25:51 +00:00
|
|
|
|
#![feature(type_macros)]
|
2015-01-10 06:26:58 +00:00
|
|
|
|
#![feature(plugin_registrar, box_syntax)]
|
2015-12-09 20:56:49 +00:00
|
|
|
|
#![feature(rustc_private, collections)]
|
2016-01-19 12:53:49 +00:00
|
|
|
|
#![feature(iter_arith)]
|
2016-01-04 04:43:56 +00:00
|
|
|
|
#![feature(custom_attribute)]
|
2016-03-14 15:41:41 +00:00
|
|
|
|
#![feature(slice_patterns)]
|
2016-03-23 11:19:13 +00:00
|
|
|
|
#![feature(question_mark)]
|
|
|
|
|
#![feature(stmt_expr_attributes)]
|
2016-03-11 21:10:40 +00:00
|
|
|
|
#![allow(indexing_slicing, shadow_reuse, unknown_lints)]
|
2014-11-19 08:57:34 +00:00
|
|
|
|
|
2015-11-18 16:09:48 +00:00
|
|
|
|
// this only exists to allow the "dogfood" integration test to work
|
|
|
|
|
#[allow(dead_code)]
|
2016-01-28 18:29:59 +00:00
|
|
|
|
#[allow(print_stdout)]
|
2016-01-04 04:26:12 +00:00
|
|
|
|
fn main() {
|
|
|
|
|
println!("What are you doing? Don't run clippy as an executable");
|
|
|
|
|
}
|
2015-11-18 16:09:48 +00:00
|
|
|
|
|
2015-01-10 06:26:58 +00:00
|
|
|
|
#[macro_use]
|
2014-11-19 08:57:34 +00:00
|
|
|
|
extern crate syntax;
|
2015-01-10 06:26:58 +00:00
|
|
|
|
#[macro_use]
|
2014-11-19 08:57:34 +00:00
|
|
|
|
extern crate rustc;
|
|
|
|
|
|
2016-02-21 19:11:32 +00:00
|
|
|
|
extern crate toml;
|
|
|
|
|
|
2014-11-20 07:07:37 +00:00
|
|
|
|
// Only for the compile time checking of paths
|
2015-08-16 07:03:06 +00:00
|
|
|
|
extern crate core;
|
2014-11-20 07:07:37 +00:00
|
|
|
|
extern crate collections;
|
2014-11-19 08:57:34 +00:00
|
|
|
|
|
2015-09-04 07:08:07 +00:00
|
|
|
|
// for unicode nfc normalization
|
|
|
|
|
extern crate unicode_normalization;
|
|
|
|
|
|
2016-01-09 01:05:43 +00:00
|
|
|
|
// for semver check in attrs.rs
|
|
|
|
|
extern crate semver;
|
|
|
|
|
|
2016-02-04 23:36:06 +00:00
|
|
|
|
// for regex checking
|
|
|
|
|
extern crate regex_syntax;
|
|
|
|
|
|
2016-03-23 11:19:13 +00:00
|
|
|
|
// for finding minimal boolean expressions
|
|
|
|
|
extern crate quine_mc_cluskey;
|
|
|
|
|
|
2015-11-27 13:47:00 +00:00
|
|
|
|
extern crate rustc_plugin;
|
2016-03-15 15:33:08 +00:00
|
|
|
|
extern crate rustc_const_eval;
|
2016-03-31 15:05:43 +00:00
|
|
|
|
extern crate rustc_const_math;
|
2015-11-27 13:47:00 +00:00
|
|
|
|
use rustc_plugin::Registry;
|
2014-11-19 08:57:34 +00:00
|
|
|
|
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod consts;
|
2015-08-12 05:48:00 +00:00
|
|
|
|
#[macro_use]
|
|
|
|
|
pub mod utils;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
|
|
|
|
|
// begin lints modules, do not remove this comment, it’s used in `update_lints`
|
|
|
|
|
pub mod approx_const;
|
|
|
|
|
pub mod array_indexing;
|
|
|
|
|
pub mod attrs;
|
|
|
|
|
pub mod bit_mask;
|
2016-02-22 14:42:24 +00:00
|
|
|
|
pub mod blacklisted_name;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod block_in_if_condition;
|
2016-03-23 11:19:13 +00:00
|
|
|
|
pub mod booleans;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod collapsible_if;
|
2016-01-30 17:03:53 +00:00
|
|
|
|
pub mod copies;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod cyclomatic_complexity;
|
|
|
|
|
pub mod derive;
|
2016-03-19 16:59:12 +00:00
|
|
|
|
pub mod doc;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod drop_ref;
|
|
|
|
|
pub mod entry;
|
2016-02-29 08:36:13 +00:00
|
|
|
|
pub mod enum_clike;
|
2016-02-03 14:38:23 +00:00
|
|
|
|
pub mod enum_glob_use;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod enum_variants;
|
2015-04-30 09:48:43 +00:00
|
|
|
|
pub mod eq_op;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod escape;
|
2015-05-10 05:09:04 +00:00
|
|
|
|
pub mod eta_reduction;
|
2016-02-20 20:15:05 +00:00
|
|
|
|
pub mod format;
|
2016-02-27 16:57:36 +00:00
|
|
|
|
pub mod formatting;
|
2016-03-08 23:48:10 +00:00
|
|
|
|
pub mod functions;
|
2015-05-15 16:46:43 +00:00
|
|
|
|
pub mod identity_op;
|
2016-02-29 08:45:36 +00:00
|
|
|
|
pub mod if_not_else;
|
2016-01-24 09:16:56 +00:00
|
|
|
|
pub mod items_after_statements;
|
2015-05-20 06:52:19 +00:00
|
|
|
|
pub mod len_zero;
|
2015-08-12 11:16:09 +00:00
|
|
|
|
pub mod lifetimes;
|
2015-08-12 19:56:27 +00:00
|
|
|
|
pub mod loops;
|
2015-10-31 04:58:37 +00:00
|
|
|
|
pub mod map_clone;
|
2015-08-21 17:32:21 +00:00
|
|
|
|
pub mod matches;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod methods;
|
|
|
|
|
pub mod minmax;
|
|
|
|
|
pub mod misc;
|
|
|
|
|
pub mod misc_early;
|
|
|
|
|
pub mod mut_mut;
|
|
|
|
|
pub mod mut_reference;
|
2015-10-06 23:17:57 +00:00
|
|
|
|
pub mod mutex_atomic;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod needless_bool;
|
2015-10-21 15:25:16 +00:00
|
|
|
|
pub mod needless_update;
|
2016-03-01 15:25:15 +00:00
|
|
|
|
pub mod new_without_default;
|
2015-10-28 16:50:00 +00:00
|
|
|
|
pub mod no_effect;
|
2016-03-01 09:13:54 +00:00
|
|
|
|
pub mod non_expressive_names;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod open_options;
|
2016-03-06 15:01:17 +00:00
|
|
|
|
pub mod overflow_check_conditional;
|
2015-12-23 21:37:52 +00:00
|
|
|
|
pub mod panic;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod precedence;
|
2016-01-28 18:29:59 +00:00
|
|
|
|
pub mod print;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod ptr_arg;
|
|
|
|
|
pub mod ranges;
|
2016-02-04 23:36:06 +00:00
|
|
|
|
pub mod regex;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod returns;
|
|
|
|
|
pub mod shadow;
|
|
|
|
|
pub mod strings;
|
2016-02-27 23:01:15 +00:00
|
|
|
|
pub mod swap;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod temporary_assignment;
|
|
|
|
|
pub mod transmute;
|
|
|
|
|
pub mod types;
|
|
|
|
|
pub mod unicode;
|
2016-03-01 14:15:39 +00:00
|
|
|
|
pub mod unused_label;
|
2016-02-20 16:00:36 +00:00
|
|
|
|
pub mod vec;
|
|
|
|
|
pub mod zero_div_zero;
|
|
|
|
|
// end lints modules, do not remove this comment, it’s used in `update_lints`
|
2014-11-19 08:57:34 +00:00
|
|
|
|
|
2015-09-03 14:42:17 +00:00
|
|
|
|
mod reexport {
|
2015-12-09 20:56:49 +00:00
|
|
|
|
pub use syntax::ast::{Name, NodeId};
|
2015-09-03 14:42:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-19 08:57:34 +00:00
|
|
|
|
#[plugin_registrar]
|
2016-01-30 13:01:26 +00:00
|
|
|
|
#[cfg_attr(rustfmt, rustfmt_skip)]
|
2014-11-19 08:57:34 +00:00
|
|
|
|
pub fn plugin_registrar(reg: &mut Registry) {
|
2016-03-06 14:48:56 +00:00
|
|
|
|
let conf = match utils::conf::conf_file(reg.args()) {
|
|
|
|
|
Ok(file_name) => {
|
2016-03-09 10:48:55 +00:00
|
|
|
|
// if the user specified a file, it must exist, otherwise default to `clippy.toml` but
|
2016-03-06 14:48:56 +00:00
|
|
|
|
// do not require the file to exist
|
|
|
|
|
let (ref file_name, must_exist) = if let Some(ref file_name) = file_name {
|
|
|
|
|
(&**file_name, true)
|
|
|
|
|
} else {
|
2016-03-09 10:48:55 +00:00
|
|
|
|
("clippy.toml", false)
|
2016-03-06 14:48:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let (conf, errors) = utils::conf::read_conf(&file_name, must_exist);
|
|
|
|
|
|
|
|
|
|
// 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
|
2016-02-21 19:11:32 +00:00
|
|
|
|
}
|
|
|
|
|
Err((err, span)) => {
|
2016-03-06 14:48:56 +00:00
|
|
|
|
reg.sess.struct_span_err(span, err)
|
2016-03-19 14:06:56 +00:00
|
|
|
|
.span_note(span, "Clippy will use default configuration")
|
2016-03-06 14:48:56 +00:00
|
|
|
|
.emit();
|
|
|
|
|
utils::conf::Conf::default()
|
2016-02-21 19:11:32 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2016-03-24 18:25:59 +00:00
|
|
|
|
let mut store = reg.sess.lint_store.borrow_mut();
|
|
|
|
|
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");
|
|
|
|
|
// end deprecated lints, do not remove this comment, it’s used in `update_lints`
|
|
|
|
|
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box types::TypePass);
|
2016-03-23 11:19:13 +00:00
|
|
|
|
reg.register_late_lint_pass(box booleans::NonminimalBool);
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box misc::TopLevelRefPass);
|
|
|
|
|
reg.register_late_lint_pass(box misc::CmpNan);
|
|
|
|
|
reg.register_late_lint_pass(box eq_op::EqOp);
|
2016-02-01 11:47:31 +00:00
|
|
|
|
reg.register_early_lint_pass(box enum_variants::EnumVariantNames);
|
2016-02-03 14:38:23 +00:00
|
|
|
|
reg.register_late_lint_pass(box enum_glob_use::EnumGlobUse);
|
2016-02-29 08:36:13 +00:00
|
|
|
|
reg.register_late_lint_pass(box enum_clike::EnumClikeUnportableVariant);
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box bit_mask::BitMask);
|
|
|
|
|
reg.register_late_lint_pass(box ptr_arg::PtrArg);
|
|
|
|
|
reg.register_late_lint_pass(box needless_bool::NeedlessBool);
|
2016-02-09 19:10:22 +00:00
|
|
|
|
reg.register_late_lint_pass(box needless_bool::BoolComparison);
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box approx_const::ApproxConstant);
|
|
|
|
|
reg.register_late_lint_pass(box misc::FloatCmp);
|
|
|
|
|
reg.register_early_lint_pass(box precedence::Precedence);
|
|
|
|
|
reg.register_late_lint_pass(box eta_reduction::EtaPass);
|
|
|
|
|
reg.register_late_lint_pass(box identity_op::IdentityOp);
|
2016-03-19 14:06:56 +00:00
|
|
|
|
reg.register_early_lint_pass(box items_after_statements::ItemsAfterStatements);
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box mut_mut::MutMut);
|
2015-09-29 11:11:19 +00:00
|
|
|
|
reg.register_late_lint_pass(box mut_reference::UnnecessaryMutPassed);
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box len_zero::LenZero);
|
|
|
|
|
reg.register_late_lint_pass(box misc::CmpOwned);
|
|
|
|
|
reg.register_late_lint_pass(box attrs::AttrPass);
|
|
|
|
|
reg.register_late_lint_pass(box collapsible_if::CollapsibleIf);
|
2015-11-20 05:22:52 +00:00
|
|
|
|
reg.register_late_lint_pass(box block_in_if_condition::BlockInIfCondition);
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box misc::ModuloOne);
|
|
|
|
|
reg.register_late_lint_pass(box unicode::Unicode);
|
|
|
|
|
reg.register_late_lint_pass(box strings::StringAdd);
|
2015-10-11 21:12:21 +00:00
|
|
|
|
reg.register_early_lint_pass(box returns::ReturnPass);
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box methods::MethodsPass);
|
|
|
|
|
reg.register_late_lint_pass(box shadow::ShadowPass);
|
|
|
|
|
reg.register_late_lint_pass(box types::LetPass);
|
|
|
|
|
reg.register_late_lint_pass(box types::UnitCmp);
|
|
|
|
|
reg.register_late_lint_pass(box loops::LoopsPass);
|
|
|
|
|
reg.register_late_lint_pass(box lifetimes::LifetimePass);
|
2016-01-12 19:23:28 +00:00
|
|
|
|
reg.register_late_lint_pass(box entry::HashMapLint);
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box ranges::StepByZero);
|
|
|
|
|
reg.register_late_lint_pass(box types::CastPass);
|
2016-02-21 20:01:30 +00:00
|
|
|
|
reg.register_late_lint_pass(box types::TypeComplexityPass::new(conf.type_complexity_threshold));
|
2015-09-19 02:53:04 +00:00
|
|
|
|
reg.register_late_lint_pass(box matches::MatchPass);
|
|
|
|
|
reg.register_late_lint_pass(box misc::PatternPass);
|
|
|
|
|
reg.register_late_lint_pass(box minmax::MinMaxPass);
|
2015-10-07 11:15:14 +00:00
|
|
|
|
reg.register_late_lint_pass(box open_options::NonSensicalOpenOptions);
|
2015-10-12 02:22:13 +00:00
|
|
|
|
reg.register_late_lint_pass(box zero_div_zero::ZeroDivZeroPass);
|
2015-10-06 23:17:57 +00:00
|
|
|
|
reg.register_late_lint_pass(box mutex_atomic::MutexAtomic);
|
2015-10-21 15:25:16 +00:00
|
|
|
|
reg.register_late_lint_pass(box needless_update::NeedlessUpdatePass);
|
2015-10-28 16:50:00 +00:00
|
|
|
|
reg.register_late_lint_pass(box no_effect::NoEffectPass);
|
2015-10-31 04:58:37 +00:00
|
|
|
|
reg.register_late_lint_pass(box map_clone::MapClonePass);
|
2015-11-04 09:55:14 +00:00
|
|
|
|
reg.register_late_lint_pass(box temporary_assignment::TemporaryAssignmentPass);
|
2016-03-25 22:22:17 +00:00
|
|
|
|
reg.register_late_lint_pass(box transmute::Transmute);
|
2016-02-21 19:11:32 +00:00
|
|
|
|
reg.register_late_lint_pass(box cyclomatic_complexity::CyclomaticComplexity::new(conf.cyclomatic_complexity_threshold));
|
2015-12-04 10:12:53 +00:00
|
|
|
|
reg.register_late_lint_pass(box escape::EscapePass);
|
2015-12-06 02:21:34 +00:00
|
|
|
|
reg.register_early_lint_pass(box misc_early::MiscEarly);
|
2015-12-11 23:08:59 +00:00
|
|
|
|
reg.register_late_lint_pass(box misc::UsedUnderscoreBinding);
|
2015-12-21 18:22:29 +00:00
|
|
|
|
reg.register_late_lint_pass(box array_indexing::ArrayIndexing);
|
2015-12-23 21:37:52 +00:00
|
|
|
|
reg.register_late_lint_pass(box panic::PanicPass);
|
2016-01-19 18:14:49 +00:00
|
|
|
|
reg.register_late_lint_pass(box strings::StringLitAsBytes);
|
2016-01-21 17:19:02 +00:00
|
|
|
|
reg.register_late_lint_pass(box derive::Derive);
|
2016-01-27 19:23:59 +00:00
|
|
|
|
reg.register_late_lint_pass(box types::CharLitAsU8);
|
2016-01-28 18:29:59 +00:00
|
|
|
|
reg.register_late_lint_pass(box print::PrintLint);
|
2016-01-29 00:54:10 +00:00
|
|
|
|
reg.register_late_lint_pass(box vec::UselessVec);
|
2016-03-01 12:05:39 +00:00
|
|
|
|
reg.register_early_lint_pass(box non_expressive_names::NonExpressiveNames {
|
2016-03-14 13:56:44 +00:00
|
|
|
|
max_single_char_names: conf.max_single_char_names,
|
2016-03-01 12:05:39 +00:00
|
|
|
|
});
|
2016-02-01 18:53:03 +00:00
|
|
|
|
reg.register_late_lint_pass(box drop_ref::DropRefPass);
|
2016-02-03 03:48:52 +00:00
|
|
|
|
reg.register_late_lint_pass(box types::AbsurdExtremeComparisons);
|
2016-03-25 09:42:27 +00:00
|
|
|
|
reg.register_late_lint_pass(box types::InvalidUpcastComparisons);
|
2016-02-14 15:55:02 +00:00
|
|
|
|
reg.register_late_lint_pass(box regex::RegexPass::default());
|
2016-01-30 17:03:53 +00:00
|
|
|
|
reg.register_late_lint_pass(box copies::CopyAndPaste);
|
2016-02-20 16:35:07 +00:00
|
|
|
|
reg.register_late_lint_pass(box format::FormatMacLint);
|
2016-02-27 16:57:36 +00:00
|
|
|
|
reg.register_early_lint_pass(box formatting::Formatting);
|
2016-02-27 23:01:15 +00:00
|
|
|
|
reg.register_late_lint_pass(box swap::Swap);
|
2016-02-29 08:45:36 +00:00
|
|
|
|
reg.register_early_lint_pass(box if_not_else::IfNotElse);
|
2016-03-06 15:01:17 +00:00
|
|
|
|
reg.register_late_lint_pass(box overflow_check_conditional::OverflowCheckConditional);
|
2016-03-01 14:15:39 +00:00
|
|
|
|
reg.register_late_lint_pass(box unused_label::UnusedLabel);
|
2016-03-01 15:25:15 +00:00
|
|
|
|
reg.register_late_lint_pass(box new_without_default::NewWithoutDefault);
|
2016-02-22 14:42:24 +00:00
|
|
|
|
reg.register_late_lint_pass(box blacklisted_name::BlackListedName::new(conf.blacklisted_names));
|
2016-03-08 23:48:10 +00:00
|
|
|
|
reg.register_late_lint_pass(box functions::Functions::new(conf.too_many_arguments_threshold));
|
2016-04-04 18:18:17 +00:00
|
|
|
|
reg.register_early_lint_pass(box doc::Doc::new(conf.doc_valid_idents));
|
2016-01-04 04:43:56 +00:00
|
|
|
|
|
|
|
|
|
reg.register_lint_group("clippy_pedantic", vec![
|
2016-03-11 09:51:16 +00:00
|
|
|
|
array_indexing::INDEXING_SLICING,
|
2016-03-30 10:55:59 +00:00
|
|
|
|
booleans::NONMINIMAL_BOOL,
|
2016-02-03 14:38:23 +00:00
|
|
|
|
enum_glob_use::ENUM_GLOB_USE,
|
2016-01-24 11:24:16 +00:00
|
|
|
|
matches::SINGLE_MATCH_ELSE,
|
2015-09-01 15:53:56 +00:00
|
|
|
|
methods::OPTION_UNWRAP_USED,
|
|
|
|
|
methods::RESULT_UNWRAP_USED,
|
2015-09-07 07:17:45 +00:00
|
|
|
|
methods::WRONG_PUB_SELF_CONVENTION,
|
2015-09-07 20:58:15 +00:00
|
|
|
|
mut_mut::MUT_MUT,
|
2015-10-07 20:58:34 +00:00
|
|
|
|
mutex_atomic::MUTEX_INTEGER,
|
2016-01-28 18:29:59 +00:00
|
|
|
|
print::PRINT_STDOUT,
|
2016-02-07 17:30:57 +00:00
|
|
|
|
print::USE_DEBUG,
|
2015-08-21 15:11:34 +00:00
|
|
|
|
shadow::SHADOW_REUSE,
|
|
|
|
|
shadow::SHADOW_SAME,
|
2015-09-08 09:50:04 +00:00
|
|
|
|
shadow::SHADOW_UNRELATED,
|
2016-02-05 15:48:35 +00:00
|
|
|
|
strings::STRING_ADD,
|
2015-09-01 15:53:56 +00:00
|
|
|
|
strings::STRING_ADD_ASSIGN,
|
|
|
|
|
types::CAST_POSSIBLE_TRUNCATION,
|
|
|
|
|
types::CAST_POSSIBLE_WRAP,
|
|
|
|
|
types::CAST_PRECISION_LOSS,
|
|
|
|
|
types::CAST_SIGN_LOSS,
|
|
|
|
|
unicode::NON_ASCII_LITERAL,
|
2015-09-04 07:08:07 +00:00
|
|
|
|
unicode::UNICODE_NOT_NFC,
|
2015-08-21 15:11:34 +00:00
|
|
|
|
]);
|
|
|
|
|
|
2016-01-04 04:43:56 +00:00
|
|
|
|
reg.register_lint_group("clippy", vec![
|
2015-08-13 09:31:09 +00:00
|
|
|
|
approx_const::APPROX_CONSTANT,
|
2015-12-21 18:22:29 +00:00
|
|
|
|
array_indexing::OUT_OF_BOUNDS_INDEXING,
|
2016-01-09 01:05:43 +00:00
|
|
|
|
attrs::DEPRECATED_SEMVER,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
attrs::INLINE_ALWAYS,
|
|
|
|
|
bit_mask::BAD_BIT_MASK,
|
|
|
|
|
bit_mask::INEFFECTIVE_BIT_MASK,
|
2016-02-22 14:42:24 +00:00
|
|
|
|
blacklisted_name::BLACKLISTED_NAME,
|
2015-11-20 05:22:52 +00:00
|
|
|
|
block_in_if_condition::BLOCK_IN_IF_CONDITION_EXPR,
|
|
|
|
|
block_in_if_condition::BLOCK_IN_IF_CONDITION_STMT,
|
2016-03-24 10:02:28 +00:00
|
|
|
|
booleans::LOGIC_BUG,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
collapsible_if::COLLAPSIBLE_IF,
|
2016-01-30 18:16:49 +00:00
|
|
|
|
copies::IF_SAME_THEN_ELSE,
|
2016-01-30 17:03:53 +00:00
|
|
|
|
copies::IFS_SAME_COND,
|
2016-02-10 00:22:53 +00:00
|
|
|
|
copies::MATCH_SAME_ARMS,
|
2015-11-18 11:35:18 +00:00
|
|
|
|
cyclomatic_complexity::CYCLOMATIC_COMPLEXITY,
|
2016-02-15 22:38:09 +00:00
|
|
|
|
derive::DERIVE_HASH_XOR_EQ,
|
2016-01-24 12:56:23 +00:00
|
|
|
|
derive::EXPL_IMPL_CLONE_ON_COPY,
|
2016-03-19 16:59:12 +00:00
|
|
|
|
doc::DOC_MARKDOWN,
|
2016-02-01 18:53:03 +00:00
|
|
|
|
drop_ref::DROP_REF,
|
2016-01-12 19:23:28 +00:00
|
|
|
|
entry::MAP_ENTRY,
|
2016-02-29 08:36:13 +00:00
|
|
|
|
enum_clike::ENUM_CLIKE_UNPORTABLE_VARIANT,
|
2016-02-01 11:47:31 +00:00
|
|
|
|
enum_variants::ENUM_VARIANT_NAMES,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
eq_op::EQ_OP,
|
2015-12-04 10:12:53 +00:00
|
|
|
|
escape::BOXED_LOCAL,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
eta_reduction::REDUNDANT_CLOSURE,
|
2016-02-20 16:35:07 +00:00
|
|
|
|
format::USELESS_FORMAT,
|
2016-02-27 16:57:36 +00:00
|
|
|
|
formatting::SUSPICIOUS_ASSIGNMENT_FORMATTING,
|
2016-02-27 16:59:04 +00:00
|
|
|
|
formatting::SUSPICIOUS_ELSE_FORMATTING,
|
2016-03-08 23:48:10 +00:00
|
|
|
|
functions::TOO_MANY_ARGUMENTS,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
identity_op::IDENTITY_OP,
|
2016-02-29 08:45:36 +00:00
|
|
|
|
if_not_else::IF_NOT_ELSE,
|
2016-01-24 09:16:56 +00:00
|
|
|
|
items_after_statements::ITEMS_AFTER_STATEMENTS,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
len_zero::LEN_WITHOUT_IS_EMPTY,
|
|
|
|
|
len_zero::LEN_ZERO,
|
|
|
|
|
lifetimes::NEEDLESS_LIFETIMES,
|
2015-12-06 21:36:22 +00:00
|
|
|
|
lifetimes::UNUSED_LIFETIMES,
|
2015-10-12 11:38:18 +00:00
|
|
|
|
loops::EMPTY_LOOP,
|
2015-08-23 17:25:45 +00:00
|
|
|
|
loops::EXPLICIT_COUNTER_LOOP,
|
2015-08-13 13:36:31 +00:00
|
|
|
|
loops::EXPLICIT_ITER_LOOP,
|
2016-01-19 20:10:00 +00:00
|
|
|
|
loops::FOR_KV_MAP,
|
2016-01-29 07:34:09 +00:00
|
|
|
|
loops::FOR_LOOP_OVER_OPTION,
|
2016-01-29 23:15:57 +00:00
|
|
|
|
loops::FOR_LOOP_OVER_RESULT,
|
2015-08-17 05:23:57 +00:00
|
|
|
|
loops::ITER_NEXT_LOOP,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
loops::NEEDLESS_RANGE_LOOP,
|
2015-09-15 00:19:05 +00:00
|
|
|
|
loops::REVERSE_RANGE_LOOP,
|
2015-08-30 11:10:59 +00:00
|
|
|
|
loops::UNUSED_COLLECT,
|
2015-08-29 09:41:06 +00:00
|
|
|
|
loops::WHILE_LET_LOOP,
|
2015-10-16 18:27:13 +00:00
|
|
|
|
loops::WHILE_LET_ON_ITERATOR,
|
2015-10-31 04:58:37 +00:00
|
|
|
|
map_clone::MAP_CLONE,
|
2015-10-20 17:25:37 +00:00
|
|
|
|
matches::MATCH_BOOL,
|
2015-12-23 00:14:10 +00:00
|
|
|
|
matches::MATCH_OVERLAPPING_ARM,
|
2015-08-21 17:49:00 +00:00
|
|
|
|
matches::MATCH_REF_PATS,
|
2015-08-21 17:32:21 +00:00
|
|
|
|
matches::SINGLE_MATCH,
|
2016-01-20 01:23:39 +00:00
|
|
|
|
methods::CHARS_NEXT_CMP,
|
2016-02-05 10:34:15 +00:00
|
|
|
|
methods::CLONE_DOUBLE_REF,
|
2016-02-02 21:35:01 +00:00
|
|
|
|
methods::CLONE_ON_COPY,
|
2016-01-25 13:02:47 +00:00
|
|
|
|
methods::EXTEND_FROM_SLICE,
|
2015-12-29 00:56:58 +00:00
|
|
|
|
methods::FILTER_NEXT,
|
2016-02-13 01:20:22 +00:00
|
|
|
|
methods::NEW_RET_NO_SELF,
|
2015-11-19 13:39:27 +00:00
|
|
|
|
methods::OK_EXPECT,
|
2015-11-23 05:48:19 +00:00
|
|
|
|
methods::OPTION_MAP_UNWRAP_OR,
|
|
|
|
|
methods::OPTION_MAP_UNWRAP_OR_ELSE,
|
2016-01-16 17:47:45 +00:00
|
|
|
|
methods::OR_FUN_CALL,
|
2015-12-30 08:38:03 +00:00
|
|
|
|
methods::SEARCH_IS_SOME,
|
2015-08-24 16:13:02 +00:00
|
|
|
|
methods::SHOULD_IMPLEMENT_TRAIT,
|
2016-02-15 03:40:43 +00:00
|
|
|
|
methods::SINGLE_CHAR_PATTERN,
|
2015-09-01 16:52:48 +00:00
|
|
|
|
methods::WRONG_SELF_CONVENTION,
|
2015-09-05 10:46:34 +00:00
|
|
|
|
minmax::MIN_MAX,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
misc::CMP_NAN,
|
|
|
|
|
misc::CMP_OWNED,
|
|
|
|
|
misc::FLOAT_CMP,
|
|
|
|
|
misc::MODULO_ONE,
|
2015-08-30 17:02:30 +00:00
|
|
|
|
misc::REDUNDANT_PATTERN,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
misc::TOPLEVEL_REF_ARG,
|
2015-12-11 23:08:59 +00:00
|
|
|
|
misc::USED_UNDERSCORE_BINDING,
|
2016-01-03 13:00:42 +00:00
|
|
|
|
misc_early::DUPLICATE_UNDERSCORE_ARGUMENT,
|
2016-03-03 19:14:49 +00:00
|
|
|
|
misc_early::REDUNDANT_CLOSURE_CALL,
|
2015-12-07 12:23:52 +00:00
|
|
|
|
misc_early::UNNEEDED_FIELD_PATTERN,
|
2015-09-29 11:11:19 +00:00
|
|
|
|
mut_reference::UNNECESSARY_MUT_PASSED,
|
2015-10-06 23:17:57 +00:00
|
|
|
|
mutex_atomic::MUTEX_ATOMIC,
|
2016-02-09 19:10:22 +00:00
|
|
|
|
needless_bool::BOOL_COMPARISON,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
needless_bool::NEEDLESS_BOOL,
|
2015-10-21 15:25:16 +00:00
|
|
|
|
needless_update::NEEDLESS_UPDATE,
|
2016-03-01 15:25:15 +00:00
|
|
|
|
new_without_default::NEW_WITHOUT_DEFAULT,
|
2015-10-28 16:50:00 +00:00
|
|
|
|
no_effect::NO_EFFECT,
|
2016-03-01 12:05:39 +00:00
|
|
|
|
non_expressive_names::MANY_SINGLE_CHAR_NAMES,
|
2016-03-01 09:13:54 +00:00
|
|
|
|
non_expressive_names::SIMILAR_NAMES,
|
2015-10-07 11:15:14 +00:00
|
|
|
|
open_options::NONSENSICAL_OPEN_OPTIONS,
|
2016-03-06 15:01:17 +00:00
|
|
|
|
overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL,
|
2015-12-23 21:37:52 +00:00
|
|
|
|
panic::PANIC_PARAMS,
|
2015-08-30 15:32:35 +00:00
|
|
|
|
precedence::PRECEDENCE,
|
2015-10-14 17:51:54 +00:00
|
|
|
|
ptr_arg::PTR_ARG,
|
2015-08-15 16:55:25 +00:00
|
|
|
|
ranges::RANGE_STEP_BY_ZERO,
|
2015-11-03 14:42:52 +00:00
|
|
|
|
ranges::RANGE_ZIP_WITH_LEN,
|
2016-02-04 23:36:06 +00:00
|
|
|
|
regex::INVALID_REGEX,
|
2016-02-08 22:48:04 +00:00
|
|
|
|
regex::REGEX_MACRO,
|
2016-02-05 22:10:48 +00:00
|
|
|
|
regex::TRIVIAL_REGEX,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
returns::LET_AND_RETURN,
|
|
|
|
|
returns::NEEDLESS_RETURN,
|
2016-01-19 18:14:49 +00:00
|
|
|
|
strings::STRING_LIT_AS_BYTES,
|
2016-02-27 23:46:02 +00:00
|
|
|
|
swap::ALMOST_SWAPPED,
|
|
|
|
|
swap::MANUAL_SWAP,
|
2015-11-04 09:55:14 +00:00
|
|
|
|
temporary_assignment::TEMPORARY_ASSIGNMENT,
|
2016-03-24 22:48:38 +00:00
|
|
|
|
transmute::CROSSPOINTER_TRANSMUTE,
|
2016-03-25 22:22:17 +00:00
|
|
|
|
transmute::TRANSMUTE_PTR_TO_REF,
|
2015-11-11 14:28:31 +00:00
|
|
|
|
transmute::USELESS_TRANSMUTE,
|
2016-02-03 03:48:52 +00:00
|
|
|
|
types::ABSURD_EXTREME_COMPARISONS,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
types::BOX_VEC,
|
2016-01-27 19:59:19 +00:00
|
|
|
|
types::CHAR_LIT_AS_U8,
|
2016-03-25 09:44:45 +00:00
|
|
|
|
types::INVALID_UPCAST_COMPARISONS,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
types::LET_UNIT_VALUE,
|
|
|
|
|
types::LINKEDLIST,
|
2015-08-21 20:53:47 +00:00
|
|
|
|
types::TYPE_COMPLEXITY,
|
2015-08-19 04:54:20 +00:00
|
|
|
|
types::UNIT_CMP,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
unicode::ZERO_WIDTH_SPACE,
|
2016-03-01 14:15:39 +00:00
|
|
|
|
unused_label::UNUSED_LABEL,
|
2016-01-29 00:54:10 +00:00
|
|
|
|
vec::USELESS_VEC,
|
2015-10-12 02:22:13 +00:00
|
|
|
|
zero_div_zero::ZERO_DIVIDED_BY_ZERO,
|
2015-08-13 09:31:09 +00:00
|
|
|
|
]);
|
2014-12-10 21:34:58 +00:00
|
|
|
|
}
|