Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
clippy: Configure lint `unwrap_used`
Lorenz Leutgeb committed 15 days ago
commit c23a257f3ca426518c1849ef992b88010a025391
parent dbec748
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;