Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
clippy: Configure `unwrap_used`
Lorenz Leutgeb committed 23 days ago
commit 3f54156c0fe463f212563f290896e0da6de1e0eb
parent ad5ce20185de81edd86e81d839b2a0c2e21100b1
6 files changed +1 -9
added clippy.toml
@@ -0,0 +1 @@
+
allow-unwrap-in-tests = true

\ No newline at end of file
modified crates/radicle/src/cob/test.rs
@@ -1,4 +1,3 @@
-
#![allow(clippy::unwrap_used)]
use std::marker::PhantomData;
use std::ops::Deref;

modified crates/radicle/src/storage/refs/sigrefs/git/properties.rs
@@ -1,5 +1,3 @@
-
#![allow(clippy::unwrap_used)]
-

use crypto::{signature, test::signer::MockSigner, PublicKey, Signer as _};
use qcheck::TestResult;
use qcheck_macros::quickcheck;
modified crates/radicle/src/storage/refs/sigrefs/property.rs
@@ -1,5 +1,3 @@
-
#![allow(clippy::unwrap_used)]
-

mod mock;
use mock::*;

modified crates/radicle/src/storage/refs/sigrefs/read/test.rs
@@ -1,5 +1,3 @@
-
#![allow(clippy::unwrap_used)]
-

mod mock;

mod commit_reader;
modified crates/radicle/src/storage/refs/sigrefs/write/test.rs
@@ -1,5 +1,3 @@
-
#![allow(clippy::unwrap_used)]
-

mod mock;

mod commit_writer;