first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+6 -3
View File
@@ -6,17 +6,20 @@
set -e
cd "$(dirname "$0")/.."
FMT_COMMAND="cargo fmt"
FMT_COMMAND="./script/format"
echo "Running $FMT_COMMAND..."
set -e
EXIT_CODE=0
$FMT_COMMAND -- --check || EXIT_CODE=$?
$FMT_COMMAND --check || EXIT_CODE=$?
if [[ $EXIT_CODE -ne 0 ]]; then
echo 'Run `'"$FMT_COMMAND"'` to fix.'
exit $EXIT_CODE
fi
echo "Cargo fmt succeeded..."
echo "Rust formatting succeeded..."
echo "Checking for inline Rust test modules..."
./script/check_no_inline_test_modules
echo "Inline Rust test module check succeeded..."
echo "Running clippy..."
# Exclude warp_completer because we run clippy on it with default features (rather than all features) below.