2015-01-10 11:56:58 +05:30
|
|
|
#![feature(plugin_registrar, box_syntax)]
|
2015-04-20 16:18:35 +05:30
|
|
|
#![feature(rustc_private, collections)]
|
2015-02-18 17:54:22 +05:30
|
|
|
#![allow(unused_imports)]
|
2014-11-19 14:27:34 +05:30
|
|
|
|
2015-01-10 11:56:58 +05:30
|
|
|
#[macro_use]
|
2014-11-19 14:27:34 +05:30
|
|
|
extern crate syntax;
|
2015-01-10 11:56:58 +05:30
|
|
|
#[macro_use]
|
2014-11-19 14:27:34 +05:30
|
|
|
extern crate rustc;
|
|
|
|
|
2014-11-20 12:37:37 +05:30
|
|
|
// Only for the compile time checking of paths
|
|
|
|
extern crate collections;
|
2014-11-19 14:27:34 +05:30
|
|
|
|
|
|
|
use rustc::plugin::Registry;
|
|
|
|
use rustc::lint::LintPassObject;
|
|
|
|
|
|
|
|
pub mod types;
|
2014-11-20 00:18:31 +05:30
|
|
|
pub mod misc;
|
2015-04-30 11:48:43 +02:00
|
|
|
pub mod eq_op;
|
|
|
|
pub mod bit_mask;
|
2015-05-04 08:15:24 +02:00
|
|
|
pub mod ptr_arg;
|
2015-05-02 00:35:49 +02:00
|
|
|
pub mod needless_bool;
|
2015-05-04 12:01:34 +02:00
|
|
|
pub mod approx_const;
|
2015-05-10 10:39:04 +05:30
|
|
|
pub mod eta_reduction;
|
2015-05-15 18:46:43 +02:00
|
|
|
pub mod identity_op;
|
2015-05-18 09:02:24 +02:00
|
|
|
pub mod mut_mut;
|
2015-05-20 08:52:19 +02:00
|
|
|
pub mod len_zero;
|
2014-11-19 14:27:34 +05:30
|
|
|
|
|
|
|
#[plugin_registrar]
|
|
|
|
pub fn plugin_registrar(reg: &mut Registry) {
|
|
|
|
reg.register_lint_pass(box types::TypePass as LintPassObject);
|
2014-11-20 00:18:31 +05:30
|
|
|
reg.register_lint_pass(box misc::MiscPass as LintPassObject);
|
2014-12-15 20:23:45 +05:30
|
|
|
reg.register_lint_pass(box misc::StrToStringPass as LintPassObject);
|
2014-12-24 15:15:22 -08:00
|
|
|
reg.register_lint_pass(box misc::TopLevelRefPass as LintPassObject);
|
2015-05-04 14:11:15 +02:00
|
|
|
reg.register_lint_pass(box misc::CmpNan as LintPassObject);
|
2015-04-30 11:48:43 +02:00
|
|
|
reg.register_lint_pass(box eq_op::EqOp as LintPassObject);
|
|
|
|
reg.register_lint_pass(box bit_mask::BitMask as LintPassObject);
|
2015-05-04 08:15:24 +02:00
|
|
|
reg.register_lint_pass(box ptr_arg::PtrArg as LintPassObject);
|
2015-05-02 00:35:49 +02:00
|
|
|
reg.register_lint_pass(box needless_bool::NeedlessBool as LintPassObject);
|
2015-05-04 12:01:34 +02:00
|
|
|
reg.register_lint_pass(box approx_const::ApproxConstant as LintPassObject);
|
2015-05-06 10:01:49 +02:00
|
|
|
reg.register_lint_pass(box misc::FloatCmp as LintPassObject);
|
2015-05-06 12:59:08 +02:00
|
|
|
reg.register_lint_pass(box misc::Precedence as LintPassObject);
|
2015-05-10 10:39:04 +05:30
|
|
|
reg.register_lint_pass(box eta_reduction::EtaPass as LintPassObject);
|
2015-05-15 18:46:43 +02:00
|
|
|
reg.register_lint_pass(box identity_op::IdentityOp as LintPassObject);
|
2015-05-18 09:02:24 +02:00
|
|
|
reg.register_lint_pass(box mut_mut::MutMut as LintPassObject);
|
2015-05-20 08:52:19 +02:00
|
|
|
reg.register_lint_pass(box len_zero::LenZero as LintPassObject);
|
2015-05-21 14:51:43 +02:00
|
|
|
reg.register_lint_pass(box misc::CmpOwned as LintPassObject);
|
2015-05-04 07:17:15 +02:00
|
|
|
|
2015-03-02 16:13:44 +05:30
|
|
|
reg.register_lint_group("clippy", vec![types::BOX_VEC, types::LINKEDLIST,
|
2014-12-26 05:24:44 +05:30
|
|
|
misc::SINGLE_MATCH, misc::STR_TO_STRING,
|
2015-04-30 11:48:43 +02:00
|
|
|
misc::TOPLEVEL_REF_ARG, eq_op::EQ_OP,
|
2015-05-15 14:09:29 +02:00
|
|
|
bit_mask::BAD_BIT_MASK,
|
|
|
|
bit_mask::INEFFECTIVE_BIT_MASK,
|
|
|
|
ptr_arg::PTR_ARG,
|
2015-05-04 12:01:34 +02:00
|
|
|
needless_bool::NEEDLESS_BOOL,
|
2015-05-04 14:11:15 +02:00
|
|
|
approx_const::APPROX_CONSTANT,
|
2015-05-06 10:01:49 +02:00
|
|
|
misc::CMP_NAN, misc::FLOAT_CMP,
|
2015-05-21 14:51:43 +02:00
|
|
|
misc::PRECEDENCE, misc::CMP_OWNED,
|
2015-05-10 10:39:04 +05:30
|
|
|
eta_reduction::REDUNDANT_CLOSURE,
|
2015-05-15 18:46:43 +02:00
|
|
|
identity_op::IDENTITY_OP,
|
2015-05-18 09:02:24 +02:00
|
|
|
mut_mut::MUT_MUT,
|
2015-05-20 08:52:19 +02:00
|
|
|
len_zero::LEN_ZERO,
|
|
|
|
len_zero::LEN_WITHOUT_IS_EMPTY,
|
2015-05-04 07:17:15 +02:00
|
|
|
]);
|
2014-12-11 03:04:58 +05:30
|
|
|
}
|