Skip to content

Commit 1f2f2c4

Browse files
committed
Allow pre-existing clippy warnings
1 parent ea8312f commit 1f2f2c4

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/lib.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@
88
//! assert_eq!(&output.unwrap(), "Finally! Some gtmpl for Rust");
99
//! ```
1010
11+
// Allow pre-existing clippy warnings from upstream
1112
#![allow(clippy::result_large_err)]
13+
#![allow(clippy::explicit_auto_deref)]
14+
#![allow(clippy::cloned_ref_to_slice_refs)]
15+
#![allow(clippy::iter_overeager_cloned)]
16+
#![allow(clippy::double_ended_iterator_last)]
17+
#![allow(clippy::to_string_in_format_args)]
18+
#![allow(clippy::needless_raw_string_hashes)]
19+
#![allow(clippy::doc_lazy_continuation)]
1220

1321
pub mod error;
1422
mod exec;

0 commit comments

Comments
 (0)