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 f02f45d0d398cc3b5e0c14113c5f594dc48170bd
parent 9b7719c359d183c0048b9f5864b21821cb5ba680
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;