Allow temporally the warnings that are currently failing

This commit is contained in:
Luis Moreno
2020-11-08 20:59:27 -04:00
parent 8a2da00665
commit 4d75af6703
+16
View File
@@ -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