Skip to content

remove tailwindcss plugin from prettier #155

remove tailwindcss plugin from prettier

remove tailwindcss plugin from prettier #155

GitHub Actions / Clippy Result (stable) succeeded Feb 11, 2024 in 1m 34s

Clippy (Stable ~ Linux/x86_64)

Clippy was successful!

Details

Running cargo clippy took roughly ~94057ms to complete

  • Working Directory: repository directory

Annotations

Check warning on line 112 in /home/runner/work/charted/charted/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Result (stable)

/home/runner/work/charted/charted/src/lib.rs#L112

redundant guard
Raw output
warning: redundant guard
   --> src/config/sessions.rs:112:24
    |
112 |                 out if out.is_empty() => Ok(Backend::Local),
    |                        ^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
    = note: `#[warn(clippy::redundant_guards)]` on by default
help: try
    |
112 -                 out if out.is_empty() => Ok(Backend::Local),
112 +                 "" => Ok(Backend::Local),
    |

Check warning on line 0 in ./file/that/probably/doesnt/exist.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Result (stable)

./file/that/probably/doesnt/exist.rs#L0

1 warning emitted
Raw output
warning: 1 warning emitted