Skip to content

chore: release v0.7.0-alpha.3 #95

chore: release v0.7.0-alpha.3

chore: release v0.7.0-alpha.3 #95

GitHub Actions / clippy succeeded Mar 11, 2024 in 1s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

src/bin/main.rs|73 col 12| warning: redundant pattern matching, consider using is_some()
--> src/bin/main.rs:73:12
|
73 | if let Some(_) = &opts.background {
| -------^^^^^^^------------------- help: try: if opts.background.is_some()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: #[warn(clippy::redundant_pattern_matching)] on by default