Added &String matching and renamed to vec_ptr_arg to ptr_arg, also added README section

This commit is contained in:
llogiq
2015-05-04 08:15:24 +02:00
parent 07adeee6e9
commit 8d2328d9a5
5 changed files with 37 additions and 25 deletions

View File

@@ -18,8 +18,8 @@ pub mod types;
pub mod misc;
pub mod eq_op;
pub mod bit_mask;
pub mod ptr_arg;
pub mod needless_bool;
pub mod vec_ptr_arg;
#[plugin_registrar]
pub fn plugin_registrar(reg: &mut Registry) {
@@ -29,14 +29,13 @@ pub fn plugin_registrar(reg: &mut Registry) {
reg.register_lint_pass(box misc::TopLevelRefPass as LintPassObject);
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 ptr_arg::PtrArg 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,
vec_ptr_arg::VEC_PTR_ARG
bit_mask::BAD_BIT_MASK, ptr_arg::PTR_ARG,
needless_bool::NEEDLESS_BOOL
]);
}