mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-03 23:27:59 +00:00
ad88e9754e
Release Notes: - N/A
7 lines
351 B
Bash
Executable file
7 lines
351 B
Bash
Executable file
#!/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
|