Skip to content

Commit

Permalink
Disable needless_return lint
Browse files Browse the repository at this point in the history
  • Loading branch information
timrogers committed Oct 1, 2024
1 parent f819223 commit 82f4cb7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ cli = ["dep:clap", "dep:serde", "dep:serde_json", "dep:inotify"]
[target.'cfg(target_os = "linux")'.dependencies]
inotify = { version = "0.10.2", optional = true }

# TODO: Remove this once we're on a newer tokio version that doesn't trip this up
# https://github.com/tokio-rs/tokio/pull/6874
[lints.clippy]
needless_return = "allow"

[[bin]]
name = "litra"
required-features = ["cli"]

0 comments on commit 82f4cb7

Please sign in to comment.