clippy

1#!/usr/bin/env bash
2
3set -euxo pipefail
4
5# clippy.toml is not currently supporting specifying allowed lints
6# so specify those here, and disable the rest until Zed's workspace
7# will have more fixes & suppression for the standard lint set
8cargo clippy --release --workspace --all-features --all-targets -- -A clippy::all -D clippy::dbg_macro -D clippy::todo
9cargo clippy -p gpui