2015-01-10 11:56:58 +05:30
|
|
|
#![feature(plugin_registrar, box_syntax)]
|
2015-08-16 09:03:06 +02:00
|
|
|
#![feature(rustc_private, core, collections)]
|
2015-08-21 03:03:37 +02:00
|
|
|
#![feature(str_split_at, num_bits_bytes)]
|
2015-08-20 14:25:08 +02:00
|
|
|
#![allow(unknown_lints)]
|
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;
|
2015-09-03 20:12:17 +05:30
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_front;
|
2014-11-19 14:27:34 +05:30
|
|
|
|
2014-11-20 12:37:37 +05:30
|
|
|
// Only for the compile time checking of paths
|
2015-08-16 09:03:06 +02:00
|
|
|
extern crate core;
|
2014-11-20 12:37:37 +05:30
|
|
|
extern crate collections;
|
2014-11-19 14:27:34 +05:30
|
|
|
|
2015-09-04 09:08:07 +02:00
|
|
|
// for unicode nfc normalization
|
|
|
|
extern crate unicode_normalization;
|
|
|
|
|
2014-11-19 14:27:34 +05:30
|
|
|
use rustc::plugin::Registry;
|
|
|
|
use rustc::lint::LintPassObject;
|
|
|
|
|
2015-08-12 07:48:00 +02:00
|
|
|
#[macro_use]
|
|
|
|
pub mod utils;
|
2015-08-14 17:14:54 +02:00
|
|
|
pub mod consts;
|
2014-11-19 14:27:34 +05:30
|
|
|
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;
|
2015-05-30 15:10:19 +02:00
|
|
|
pub mod attrs;
|
2015-05-29 15:07:34 +01:00
|
|
|
pub mod collapsible_if;
|
2015-06-11 11:35:00 +02:00
|
|
|
pub mod unicode;
|
2015-08-21 17:11:34 +02:00
|
|
|
pub mod shadow;
|
2015-08-05 15:10:45 +02:00
|
|
|
pub mod strings;
|
2015-08-11 20:53:50 +02:00
|
|
|
pub mod methods;
|
2015-08-11 21:47:34 +02:00
|
|
|
pub mod returns;
|
2015-08-12 13:16:09 +02:00
|
|
|
pub mod lifetimes;
|
2015-08-12 21:56:27 +02:00
|
|
|
pub mod loops;
|
2015-08-15 12:55:25 -04:00
|
|
|
pub mod ranges;
|
2015-08-21 19:32:21 +02:00
|
|
|
pub mod matches;
|
2015-08-30 17:32:35 +02:00
|
|
|
pub mod precedence;
|
2014-11-19 14:27:34 +05:30
|
|
|
|
2015-09-03 20:12:17 +05:30
|
|
|
mod reexport {
|
|
|
|
pub use syntax::ast::{Name, Ident, NodeId};
|
|
|
|
}
|
|
|
|
|
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-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-08-30 17:32:35 +02:00
|
|
|
reg.register_lint_pass(box precedence::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-30 15:10:19 +02:00
|
|
|
reg.register_lint_pass(box attrs::AttrPass as LintPassObject);
|
2015-05-29 15:07:34 +01:00
|
|
|
reg.register_lint_pass(box collapsible_if::CollapsibleIf as LintPassObject);
|
2015-05-31 13:17:31 +01:00
|
|
|
reg.register_lint_pass(box misc::ModuloOne as LintPassObject);
|
2015-06-11 11:35:00 +02:00
|
|
|
reg.register_lint_pass(box unicode::Unicode as LintPassObject);
|
2015-08-05 15:10:45 +02:00
|
|
|
reg.register_lint_pass(box strings::StringAdd as LintPassObject);
|
2015-08-11 21:47:34 +02:00
|
|
|
reg.register_lint_pass(box returns::ReturnPass as LintPassObject);
|
2015-08-11 20:53:50 +02:00
|
|
|
reg.register_lint_pass(box methods::MethodsPass as LintPassObject);
|
2015-08-21 17:11:34 +02:00
|
|
|
reg.register_lint_pass(box shadow::ShadowPass as LintPassObject);
|
2015-08-12 11:31:09 +02:00
|
|
|
reg.register_lint_pass(box types::LetPass as LintPassObject);
|
2015-08-19 06:54:20 +02:00
|
|
|
reg.register_lint_pass(box types::UnitCmp as LintPassObject);
|
2015-08-12 21:56:27 +02:00
|
|
|
reg.register_lint_pass(box loops::LoopsPass as LintPassObject);
|
2015-08-12 13:16:09 +02:00
|
|
|
reg.register_lint_pass(box lifetimes::LifetimePass as LintPassObject);
|
2015-08-15 12:55:25 -04:00
|
|
|
reg.register_lint_pass(box ranges::StepByZero as LintPassObject);
|
2015-08-20 00:04:01 +02:00
|
|
|
reg.register_lint_pass(box types::CastPass as LintPassObject);
|
2015-08-21 22:53:47 +02:00
|
|
|
reg.register_lint_pass(box types::TypeComplexityPass as LintPassObject);
|
2015-08-21 19:32:21 +02:00
|
|
|
reg.register_lint_pass(box matches::MatchPass as LintPassObject);
|
2015-08-30 19:02:30 +02:00
|
|
|
reg.register_lint_pass(box misc::PatternPass as LintPassObject);
|
2015-08-11 17:02:04 +02:00
|
|
|
|
2015-09-01 17:53:56 +02:00
|
|
|
reg.register_lint_group("clippy_pedantic", vec![
|
|
|
|
methods::OPTION_UNWRAP_USED,
|
|
|
|
methods::RESULT_UNWRAP_USED,
|
|
|
|
ptr_arg::PTR_ARG,
|
2015-08-21 17:11:34 +02:00
|
|
|
shadow::SHADOW_REUSE,
|
|
|
|
shadow::SHADOW_SAME,
|
2015-09-01 17:53:56 +02:00
|
|
|
strings::STRING_ADD,
|
|
|
|
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 09:08:07 +02:00
|
|
|
unicode::UNICODE_NOT_NFC,
|
2015-08-21 17:11:34 +02:00
|
|
|
]);
|
|
|
|
|
2015-08-13 11:31:09 +02: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 15:36:31 +02:00
|
|
|
loops::EXPLICIT_ITER_LOOP,
|
2015-08-17 07:23:57 +02:00
|
|
|
loops::ITER_NEXT_LOOP,
|
2015-08-13 11:31:09 +02:00
|
|
|
loops::NEEDLESS_RANGE_LOOP,
|
2015-08-30 13:10:59 +02:00
|
|
|
loops::UNUSED_COLLECT,
|
2015-08-29 11:41:06 +02:00
|
|
|
loops::WHILE_LET_LOOP,
|
2015-08-21 19:49:00 +02:00
|
|
|
matches::MATCH_REF_PATS,
|
2015-08-21 19:32:21 +02:00
|
|
|
matches::SINGLE_MATCH,
|
2015-08-24 18:13:02 +02:00
|
|
|
methods::SHOULD_IMPLEMENT_TRAIT,
|
2015-08-13 11:31:09 +02:00
|
|
|
methods::STR_TO_STRING,
|
|
|
|
methods::STRING_TO_STRING,
|
2015-09-01 18:52:48 +02:00
|
|
|
methods::WRONG_SELF_CONVENTION,
|
2015-08-13 11:31:09 +02:00
|
|
|
misc::CMP_NAN,
|
|
|
|
misc::CMP_OWNED,
|
|
|
|
misc::FLOAT_CMP,
|
|
|
|
misc::MODULO_ONE,
|
2015-08-30 19:02:30 +02:00
|
|
|
misc::REDUNDANT_PATTERN,
|
2015-08-13 11:31:09 +02:00
|
|
|
misc::TOPLEVEL_REF_ARG,
|
|
|
|
mut_mut::MUT_MUT,
|
|
|
|
needless_bool::NEEDLESS_BOOL,
|
2015-08-30 17:32:35 +02:00
|
|
|
precedence::PRECEDENCE,
|
2015-08-15 12:55:25 -04:00
|
|
|
ranges::RANGE_STEP_BY_ZERO,
|
2015-08-13 11:31:09 +02:00
|
|
|
returns::LET_AND_RETURN,
|
|
|
|
returns::NEEDLESS_RETURN,
|
2015-08-21 17:11:34 +02:00
|
|
|
shadow::SHADOW_UNRELATED,
|
2015-08-13 11:31:09 +02:00
|
|
|
types::BOX_VEC,
|
|
|
|
types::LET_UNIT_VALUE,
|
|
|
|
types::LINKEDLIST,
|
2015-08-21 22:53:47 +02:00
|
|
|
types::TYPE_COMPLEXITY,
|
2015-08-19 06:54:20 +02:00
|
|
|
types::UNIT_CMP,
|
2015-08-13 11:31:09 +02:00
|
|
|
unicode::ZERO_WIDTH_SPACE,
|
|
|
|
]);
|
2014-12-11 03:04:58 +05:30
|
|
|
}
|