Commit 6604fdd5 authored by Nugine's avatar Nugine
Browse files

style: temporarily allow `clippy::needless_return`

parent e015724b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
#![forbid(unsafe_code)]
#![deny(clippy::all, clippy::pedantic)]
#![allow(clippy::needless_return)]

use s3s_fs::FileSystem;
use s3s_fs::Result;
+1 −0
Original line number Diff line number Diff line
#![forbid(unsafe_code)]
#![deny(clippy::all, clippy::pedantic)]
#![allow(clippy::needless_return)]

use s3s::auth::SimpleAuth;
use s3s::host::SingleDomain;
+1 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@
    clippy::let_underscore_untyped,
    clippy::inline_always,
)]
#![allow(clippy::needless_return)]

#[macro_use]
mod utils;