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 -- --allow clippy::all --deny clippy::dbg_macro --deny clippy::todo
9cargo clippy --package gpui -- --deny warnings