mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-01 05:44:17 +00:00
8 lines
351 B
Text
8 lines
351 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# 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
|