We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
clippy::needless_return
1 parent e015724 commit 6604fddCopy full SHA for 6604fdd
crates/s3s-fs/src/main.rs
@@ -1,5 +1,6 @@
1
#![forbid(unsafe_code)]
2
#![deny(clippy::all, clippy::pedantic)]
3
+#![allow(clippy::needless_return)]
4
5
use s3s_fs::FileSystem;
6
use s3s_fs::Result;
crates/s3s-proxy/src/main.rs
use s3s::auth::SimpleAuth;
use s3s::host::SingleDomain;
crates/s3s/src/lib.rs
@@ -18,6 +18,7 @@
18
clippy::let_underscore_untyped,
19
clippy::inline_always,
20
)]
21
22
23
#[macro_use]
24
mod utils;
0 commit comments