mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
bef76630c5
* Remove redundant calls to `Iterator::collect` * Update mentions.rs * Add clippy lints and run fmt * CI ran on the wrong commit again
26 lines
919 B
Bash
Executable file
26 lines
919 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
|
|
cd $CWD/../
|
|
|
|
cargo clippy --workspace --fix --allow-staged --allow-dirty --tests --all-targets --all-features -- \
|
|
-D warnings -D deprecated -D clippy::perf -D clippy::complexity \
|
|
-D clippy::style -D clippy::correctness -D clippy::suspicious \
|
|
-D clippy::dbg_macro -D clippy::inefficient_to_string \
|
|
-D clippy::items-after-statements -D clippy::implicit_clone \
|
|
-D clippy::wildcard_imports -D clippy::cast_lossless \
|
|
-D clippy::manual_string_new -D clippy::redundant_closure_for_method_calls \
|
|
-D clippy::unused_self \
|
|
-A clippy::uninlined_format_args \
|
|
-D clippy::get_first \
|
|
-D clippy::explicit_into_iter_loop \
|
|
-D clippy::explicit_iter_loop \
|
|
-D clippy::needless_collect
|
|
|
|
cargo clippy --workspace --features console -- \
|
|
-D clippy::unwrap_used \
|
|
-D clippy::indexing_slicing
|
|
|
|
cargo +nightly fmt
|