mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-09 20:19:27 +00:00
e3608af992
This PR modifies the `script/clippy` script to use long flags, as these are better for readability. Release Notes: - N/A
9 lines
418 B
Bash
Executable file
9 lines
418 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
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 -- --allow clippy::all --deny clippy::dbg_macro --deny clippy::todo
|
|
cargo clippy --package gpui -- --deny warnings
|