diff --git a/src/lib.rs b/src/lib.rs index 083b95f..687becf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -64,6 +64,22 @@ //! let y_hat = knn.predict(&x).unwrap(); //! ``` +#![allow( + clippy::or_fun_call, + clippy::needless_range_loop, + clippy::ptr_arg, + clippy::len_without_is_empty, + clippy::extra_unused_lifetimes, + clippy::map_entry, + clippy::comparison_chain, + clippy::type_complexity, + clippy::needless_lifetimes, + clippy::too_many_arguments, + clippy::unnecessary_mut_passed, + clippy::let_and_return, + clippy::many_single_char_names, + clippy::tabs_in_doc_comments +)] /// Various algorithms and helper methods that are used elsewhere in SmartCore pub mod algorithm; /// Algorithms for clustering of unlabeled data