cha-core 0.6.4

Core analysis engine for Cha — pluggable code smell detection
mod api_surface;
mod brain_method;
mod cognitive_complexity;
mod comments;
mod complexity;
mod coupling;
mod data_class;
mod data_clumps;
mod dead_code;
mod design_pattern;
mod divergent_change;
mod duplicate_code;
mod error_handling;
mod feature_envy;
mod god_class;
mod hardcoded_secret;
mod hub_like;
mod inappropriate_intimacy;
mod layer_violation;
mod lazy_class;
mod length;
mod long_parameter_list;
mod message_chain;
mod middle_man;
mod naming;
mod primitive_obsession;
mod refused_bequest;
mod shotgun_surgery;
mod speculative_generality;
mod switch_statement;
mod temporary_field;
mod todo_tracker;
mod unsafe_api;

pub use api_surface::ApiSurfaceAnalyzer;
pub use brain_method::BrainMethodAnalyzer;
pub use cognitive_complexity::CognitiveComplexityAnalyzer;
pub use comments::CommentsAnalyzer;
pub use complexity::ComplexityAnalyzer;
pub use coupling::CouplingAnalyzer;
pub use data_class::DataClassAnalyzer;
pub use data_clumps::DataClumpsAnalyzer;
pub use dead_code::DeadCodeAnalyzer;
pub use design_pattern::DesignPatternAdvisor;
pub use divergent_change::DivergentChangeAnalyzer;
pub use duplicate_code::DuplicateCodeAnalyzer;
pub use error_handling::ErrorHandlingAnalyzer;
pub use feature_envy::FeatureEnvyAnalyzer;
pub use god_class::GodClassAnalyzer;
pub use hardcoded_secret::HardcodedSecretAnalyzer;
pub use hub_like::HubLikeDependencyAnalyzer;
pub use inappropriate_intimacy::InappropriateIntimacyAnalyzer;
pub use layer_violation::LayerViolationAnalyzer;
pub use lazy_class::LazyClassAnalyzer;
pub use length::LengthAnalyzer;
pub use long_parameter_list::LongParameterListAnalyzer;
pub use message_chain::MessageChainAnalyzer;
pub use middle_man::MiddleManAnalyzer;
pub use naming::NamingAnalyzer;
pub use primitive_obsession::PrimitiveObsessionAnalyzer;
pub use refused_bequest::RefusedBequestAnalyzer;
pub use shotgun_surgery::ShotgunSurgeryAnalyzer;
pub use speculative_generality::SpeculativeGeneralityAnalyzer;
pub use switch_statement::SwitchStatementAnalyzer;
pub use temporary_field::TemporaryFieldAnalyzer;
pub use todo_tracker::TodoTrackerAnalyzer;
pub use unsafe_api::UnsafeApiAnalyzer;