mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 04:44:30 +00:00
Use long flags in script/clippy
for readability (#8694)
This PR modifies the `script/clippy` script to use long flags, as these are better for readability. Release Notes: - N/A
This commit is contained in:
parent
8c3ae8b264
commit
e3608af992
1 changed files with 2 additions and 2 deletions
|
@ -5,5 +5,5 @@ set -euxo pipefail
|
|||
# clippy.toml is not currently supporting specifying allowed lints
|
||||
# so specify those here, and disable the rest until Zed's workspace
|
||||
# will have more fixes & suppression for the standard lint set
|
||||
cargo clippy --release --workspace --all-features --all-targets -- -A clippy::all -D clippy::dbg_macro -D clippy::todo
|
||||
cargo clippy -p gpui -- -D warnings
|
||||
cargo clippy --release --workspace --all-features --all-targets -- --allow clippy::all --deny clippy::dbg_macro --deny clippy::todo
|
||||
cargo clippy --package gpui -- --deny warnings
|
||||
|
|
Loading…
Reference in a new issue