2015-01-10 00:26:58 -06:00
|
|
|
#![feature(plugin_registrar, box_syntax)]
|
2015-08-16 02:03:06 -05:00
|
|
|
#![feature(rustc_private, core, collections)]
|
2015-08-20 20:03:37 -05:00
|
|
|
#![feature(str_split_at, num_bits_bytes)]
|
2015-08-20 07:25:08 -05:00
|
|
|
#![allow(unknown_lints)]
|
2014-11-19 02:57:34 -06:00
|
|
|
|
2015-01-10 00:26:58 -06:00
|
|
|
#[macro_use]
|
2014-11-19 02:57:34 -06:00
|
|
|
extern crate syntax;
|
2015-01-10 00:26:58 -06:00
|
|
|
#[macro_use]
|
2014-11-19 02:57:34 -06:00
|
|
|
extern crate rustc;
|
|
|
|
|
2014-11-20 01:07:37 -06:00
|
|
|
// Only for the compile time checking of paths
|
2015-08-16 02:03:06 -05:00
|
|
|
extern crate core;
|
2014-11-20 01:07:37 -06:00
|
|
|
extern crate collections;
|
2014-11-19 02:57:34 -06:00
|
|
|
|
|
|
|
use rustc::plugin::Registry;
|
|
|
|
use rustc::lint::LintPassObject;
|
|
|
|
|
2015-08-12 00:48:00 -05:00
|
|
|
#[macro_use]
|
|
|
|
pub mod utils;
|
2015-08-14 10:14:54 -05:00
|
|
|
pub mod consts;
|
2014-11-19 02:57:34 -06:00
|
|
|
pub mod types;
|
2014-11-19 12:48:31 -06:00
|
|
|
pub mod misc;
|
2015-04-30 04:48:43 -05:00
|
|
|
pub mod eq_op;
|
|
|
|
pub mod bit_mask;
|
2015-05-04 01:15:24 -05:00
|
|
|
pub mod ptr_arg;
|
2015-05-01 17:35:49 -05:00
|
|
|
pub mod needless_bool;
|
2015-05-04 05:01:34 -05:00
|
|
|
pub mod approx_const;
|
2015-05-10 00:09:04 -05:00
|
|
|
pub mod eta_reduction;
|
2015-05-15 11:46:43 -05:00
|
|
|
pub mod identity_op;
|
2015-05-18 02:02:24 -05:00
|
|
|
pub mod mut_mut;
|
2015-05-20 01:52:19 -05:00
|
|
|
pub mod len_zero;
|
2015-05-30 08:10:19 -05:00
|
|
|
pub mod attrs;
|
2015-05-29 09:07:34 -05:00
|
|
|
pub mod collapsible_if;
|
2015-06-11 04:35:00 -05:00
|
|
|
pub mod unicode;
|
2015-08-05 08:10:45 -05:00
|
|
|
pub mod strings;
|
2015-08-11 13:53:50 -05:00
|
|
|
pub mod methods;
|
2015-08-11 14:47:34 -05:00
|
|
|
pub mod returns;
|
2015-08-12 06:16:09 -05:00
|
|
|
pub mod lifetimes;
|
2015-08-12 14:56:27 -05:00
|
|
|
pub mod loops;
|
2015-08-15 11:55:25 -05:00
|
|
|
pub mod ranges;
|
2014-11-19 02:57:34 -06:00
|
|
|
|
|
|
|
#[plugin_registrar]
|
|
|
|
pub fn plugin_registrar(reg: &mut Registry) {
|
|
|
|
reg.register_lint_pass(box types::TypePass as LintPassObject);
|
2014-11-19 12:48:31 -06:00
|
|
|
reg.register_lint_pass(box misc::MiscPass as LintPassObject);
|
2014-12-24 17:15:22 -06:00
|
|
|
reg.register_lint_pass(box misc::TopLevelRefPass as LintPassObject);
|
2015-05-04 07:11:15 -05:00
|
|
|
reg.register_lint_pass(box misc::CmpNan as LintPassObject);
|
2015-04-30 04:48:43 -05:00
|
|
|
reg.register_lint_pass(box eq_op::EqOp as LintPassObject);
|
|
|
|
reg.register_lint_pass(box bit_mask::BitMask as LintPassObject);
|
2015-05-04 01:15:24 -05:00
|
|
|
reg.register_lint_pass(box ptr_arg::PtrArg as LintPassObject);
|
2015-05-01 17:35:49 -05:00
|
|
|
reg.register_lint_pass(box needless_bool::NeedlessBool as LintPassObject);
|
2015-05-04 05:01:34 -05:00
|
|
|
reg.register_lint_pass(box approx_const::ApproxConstant as LintPassObject);
|
2015-05-06 03:01:49 -05:00
|
|
|
reg.register_lint_pass(box misc::FloatCmp as LintPassObject);
|
2015-05-06 05:59:08 -05:00
|
|
|
reg.register_lint_pass(box misc::Precedence as LintPassObject);
|
2015-05-10 00:09:04 -05:00
|
|
|
reg.register_lint_pass(box eta_reduction::EtaPass as LintPassObject);
|
2015-05-15 11:46:43 -05:00
|
|
|
reg.register_lint_pass(box identity_op::IdentityOp as LintPassObject);
|
2015-05-18 02:02:24 -05:00
|
|
|
reg.register_lint_pass(box mut_mut::MutMut as LintPassObject);
|
2015-05-20 01:52:19 -05:00
|
|
|
reg.register_lint_pass(box len_zero::LenZero as LintPassObject);
|
2015-05-21 07:51:43 -05:00
|
|
|
reg.register_lint_pass(box misc::CmpOwned as LintPassObject);
|
2015-05-30 08:10:19 -05:00
|
|
|
reg.register_lint_pass(box attrs::AttrPass as LintPassObject);
|
2015-05-29 09:07:34 -05:00
|
|
|
reg.register_lint_pass(box collapsible_if::CollapsibleIf as LintPassObject);
|
2015-05-31 07:17:31 -05:00
|
|
|
reg.register_lint_pass(box misc::ModuloOne as LintPassObject);
|
2015-06-11 04:35:00 -05:00
|
|
|
reg.register_lint_pass(box unicode::Unicode as LintPassObject);
|
2015-08-05 08:10:45 -05:00
|
|
|
reg.register_lint_pass(box strings::StringAdd as LintPassObject);
|
2015-08-11 14:47:34 -05:00
|
|
|
reg.register_lint_pass(box returns::ReturnPass as LintPassObject);
|
2015-08-11 13:53:50 -05:00
|
|
|
reg.register_lint_pass(box methods::MethodsPass as LintPassObject);
|
2015-08-12 04:31:09 -05:00
|
|
|
reg.register_lint_pass(box types::LetPass as LintPassObject);
|
2015-08-18 23:54:20 -05:00
|
|
|
reg.register_lint_pass(box types::UnitCmp as LintPassObject);
|
2015-08-12 14:56:27 -05:00
|
|
|
reg.register_lint_pass(box loops::LoopsPass as LintPassObject);
|
2015-08-12 06:16:09 -05:00
|
|
|
reg.register_lint_pass(box lifetimes::LifetimePass as LintPassObject);
|
2015-08-15 11:55:25 -05:00
|
|
|
reg.register_lint_pass(box ranges::StepByZero as LintPassObject);
|
2015-08-19 17:04:01 -05:00
|
|
|
reg.register_lint_pass(box types::CastPass as LintPassObject);
|
2015-08-11 10:02:04 -05:00
|
|
|
|
2015-08-13 04:31:09 -05:00
|
|
|
reg.register_lint_group("clippy", vec![
|
|
|
|
approx_const::APPROX_CONSTANT,
|
|
|
|
attrs::INLINE_ALWAYS,
|
|
|
|
bit_mask::BAD_BIT_MASK,
|
|
|
|
bit_mask::INEFFECTIVE_BIT_MASK,
|
|
|
|
collapsible_if::COLLAPSIBLE_IF,
|
|
|
|
eq_op::EQ_OP,
|
|
|
|
eta_reduction::REDUNDANT_CLOSURE,
|
|
|
|
identity_op::IDENTITY_OP,
|
|
|
|
len_zero::LEN_WITHOUT_IS_EMPTY,
|
|
|
|
len_zero::LEN_ZERO,
|
|
|
|
lifetimes::NEEDLESS_LIFETIMES,
|
2015-08-13 08:36:31 -05:00
|
|
|
loops::EXPLICIT_ITER_LOOP,
|
2015-08-17 00:23:57 -05:00
|
|
|
loops::ITER_NEXT_LOOP,
|
2015-08-13 04:31:09 -05:00
|
|
|
loops::NEEDLESS_RANGE_LOOP,
|
|
|
|
methods::OPTION_UNWRAP_USED,
|
|
|
|
methods::RESULT_UNWRAP_USED,
|
|
|
|
methods::STR_TO_STRING,
|
|
|
|
methods::STRING_TO_STRING,
|
|
|
|
misc::CMP_NAN,
|
|
|
|
misc::CMP_OWNED,
|
|
|
|
misc::FLOAT_CMP,
|
|
|
|
misc::MODULO_ONE,
|
|
|
|
misc::PRECEDENCE,
|
|
|
|
misc::SINGLE_MATCH,
|
|
|
|
misc::TOPLEVEL_REF_ARG,
|
|
|
|
mut_mut::MUT_MUT,
|
|
|
|
needless_bool::NEEDLESS_BOOL,
|
|
|
|
ptr_arg::PTR_ARG,
|
2015-08-15 11:55:25 -05:00
|
|
|
ranges::RANGE_STEP_BY_ZERO,
|
2015-08-13 04:31:09 -05:00
|
|
|
returns::LET_AND_RETURN,
|
|
|
|
returns::NEEDLESS_RETURN,
|
2015-08-13 08:04:25 -05:00
|
|
|
strings::STRING_ADD,
|
2015-08-13 04:31:09 -05:00
|
|
|
strings::STRING_ADD_ASSIGN,
|
|
|
|
types::BOX_VEC,
|
2015-08-20 15:44:40 -05:00
|
|
|
types::CAST_POSSIBLE_TRUNCATION,
|
2015-08-19 17:04:01 -05:00
|
|
|
types::CAST_PRECISION_LOSS,
|
|
|
|
types::CAST_SIGN_LOSS,
|
2015-08-13 04:31:09 -05:00
|
|
|
types::LET_UNIT_VALUE,
|
|
|
|
types::LINKEDLIST,
|
2015-08-18 23:54:20 -05:00
|
|
|
types::UNIT_CMP,
|
2015-08-13 04:31:09 -05:00
|
|
|
unicode::NON_ASCII_LITERAL,
|
|
|
|
unicode::ZERO_WIDTH_SPACE,
|
|
|
|
]);
|
2014-12-10 15:34:58 -06:00
|
|
|
}
|