Allow temporally the warnings that are currently failing
This commit is contained in:
+16
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user