Skip to content

Commit

Permalink
style: temporarily allow clippy::needless_return
Browse files Browse the repository at this point in the history
  • Loading branch information
Nugine committed Oct 8, 2024
1 parent e015724 commit 6604fdd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/s3s-fs/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![forbid(unsafe_code)]
#![deny(clippy::all, clippy::pedantic)]
#![allow(clippy::needless_return)]

use s3s_fs::FileSystem;
use s3s_fs::Result;
Expand Down
1 change: 1 addition & 0 deletions crates/s3s-proxy/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![forbid(unsafe_code)]
#![deny(clippy::all, clippy::pedantic)]
#![allow(clippy::needless_return)]

use s3s::auth::SimpleAuth;
use s3s::host::SingleDomain;
Expand Down
1 change: 1 addition & 0 deletions crates/s3s/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
clippy::let_underscore_untyped,
clippy::inline_always,
)]
#![allow(clippy::needless_return)]

#[macro_use]
mod utils;
Expand Down

0 comments on commit 6604fdd

Please sign in to comment.