Skip to content

Commit

Permalink
Add #![allow(clippy::explicit_auto_deref)] due to false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Jul 6, 2022
1 parent e9f7694 commit 0ae562f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions hydroflow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#![allow(type_alias_bounds)]
#![allow(clippy::let_and_return)]
#![allow(clippy::iter_with_drain)]
#![allow(clippy::explicit_auto_deref)]

pub mod builder;
pub mod compiled;
Expand Down
1 change: 1 addition & 0 deletions hydroflow_core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![feature(proc_macro_diagnostic, proc_macro_span)]
#![allow(clippy::explicit_auto_deref)]

pub mod graph;
pub mod parse;
Expand Down
1 change: 1 addition & 0 deletions hydroflow_macro/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![feature(proc_macro_diagnostic, proc_macro_span)]
#![allow(clippy::explicit_auto_deref)]

use proc_macro2::{Literal, Span};
use quote::quote;
Expand Down
1 change: 1 addition & 0 deletions relalg/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![allow(dead_code)]
#![allow(clippy::iter_with_drain)]
#![allow(clippy::explicit_auto_deref)]

use anyhow::bail;
use sexp::Sexp;
Expand Down

0 comments on commit 0ae562f

Please sign in to comment.