File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -510,7 +510,8 @@ jobs:
510510 if [ "${{ matrix.os }}" = "windows" ]; then
511511 cargo clippy --locked --workspace ${{ matrix.clippy_excludes }} --all-targets --tests -- -D warnings
512512 else
513- cargo clippy --locked --workspace ${{ matrix.clippy_excludes }} --all-targets --all-features --tests -- -D warnings
513+ # TODO(vorporeal): Re-enable the `all-features` flag once we've fixed things.
514+ cargo clippy --locked --workspace ${{ matrix.clippy_excludes }} --all-targets --tests -- -D warnings
514515 # Run clippy on warp_completer with default, rather than all features enabled, because there is
515516 # feature-gated logic for the WIP completions-on-js implementation.
516517 cargo clippy --locked -p warp_completer --all-targets --tests -- -D warnings
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ echo "Cargo fmt succeeded..."
2020
2121echo " Running clippy..."
2222# Exclude warp_completer because we run clippy on it with default features (rather than all features) below.
23- cargo clippy --workspace --exclude warp_completer --all-targets --all-features --tests -- -D warnings
23+ #
24+ # TODO(vorporeal): Re-enable the `all-features` flag once we've fixed things.
25+ cargo clippy --workspace --exclude warp_completer --all-targets --tests -- -D warnings
2426# Run clippy on warp_completer with default, rather than all features enabled, because there is
2527# feature-gated logic for the WIP completions-on-js implementation.
2628cargo clippy -p warp_completer --all-targets --tests -- -D warnings
You can’t perform that action at this time.
0 commit comments