Added check for zero bitmask and uncommon directions, wrong comment in needless_bool corrected, added new lint vec_ptr_arg + test

This commit is contained in:
llogiq
2015-05-04 07:17:15 +02:00
parent 53fa76dff9
commit 07adeee6e9
6 changed files with 130 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ pub mod misc;
pub mod eq_op;
pub mod bit_mask;
pub mod needless_bool;
pub mod vec_ptr_arg;
#[plugin_registrar]
pub fn plugin_registrar(reg: &mut Registry) {
@@ -29,9 +30,13 @@ pub fn plugin_registrar(reg: &mut Registry) {
reg.register_lint_pass(box eq_op::EqOp as LintPassObject);
reg.register_lint_pass(box bit_mask::BitMask as LintPassObject);
reg.register_lint_pass(box needless_bool::NeedlessBool as LintPassObject);
reg.register_lint_pass(box vec_ptr_arg::VecPtrArg as LintPassObject);
reg.register_lint_group("clippy", vec![types::BOX_VEC, types::LINKEDLIST,
misc::SINGLE_MATCH, misc::STR_TO_STRING,
misc::TOPLEVEL_REF_ARG, eq_op::EQ_OP,
bit_mask::BAD_BIT_MASK,
needless_bool::NEEDLESS_BOOL]);
needless_bool::NEEDLESS_BOOL,
vec_ptr_arg::VEC_PTR_ARG
]);
}