affaan-m--everything-claude-code
d48cda4081
CI / Test (ubuntu-latest, Node 18.x, bun) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, npm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, pnpm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, yarn) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 20.x, bun) (push) Failing after 17m13s
CI / Test (ubuntu-latest, Node 20.x, npm) (push) Failing after 18m42s
CI / Test (ubuntu-latest, Node 20.x, pnpm) (push) Failing after 15m0s
CI / Test (ubuntu-latest, Node 20.x, yarn) (push) Failing after 49m44s
CI / Test (ubuntu-latest, Node 22.x, bun) (push) Failing after 51m55s
CI / Test (ubuntu-latest, Node 22.x, pnpm) (push) Failing after 21m57s
CI / Test (ubuntu-latest, Node 22.x, npm) (push) Failing after 37m39s
CI / Test (ubuntu-latest, Node 22.x, yarn) (push) Failing after 34m7s
CI / Validate Components (push) Failing after 37m15s
CI / Python Tests (push) Failing after 10m1s
CI / Security Scan (push) Failing after 10m1s
CI / Lint (push) Failing after 17m12s
CI / Coverage (push) Failing after 20m19s
CI / Test (macos-latest, Node 18.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, yarn) (push) Has been cancelled
71 行
2.3 KiB
Bash
可执行文件
71 行
2.3 KiB
Bash
可执行文件
#!/bin/bash
|
|
# ─────────────────────────────────────────────────────────────
|
|
# Format — auto-format a file using detected formatter
|
|
# Detects: biome or prettier
|
|
# Used by: .kiro/hooks/auto-format.json (fileEdited)
|
|
# ─────────────────────────────────────────────────────────────
|
|
|
|
set -o pipefail
|
|
|
|
# ── Validate input ───────────────────────────────────────────
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: format.sh <file>"
|
|
echo "Example: format.sh src/index.ts"
|
|
exit 1
|
|
fi
|
|
|
|
FILE="$1"
|
|
|
|
if [ ! -f "$FILE" ]; then
|
|
echo "Error: File not found: $FILE"
|
|
exit 1
|
|
fi
|
|
|
|
# ── Detect formatter ─────────────────────────────────────────
|
|
detect_formatter() {
|
|
if [ -f "biome.json" ] || [ -f "biome.jsonc" ]; then
|
|
echo "biome"
|
|
elif [ -f ".prettierrc" ] || [ -f ".prettierrc.js" ] || [ -f ".prettierrc.json" ] || [ -f ".prettierrc.yml" ] || [ -f "prettier.config.js" ] || [ -f "prettier.config.mjs" ]; then
|
|
echo "prettier"
|
|
elif command -v biome &>/dev/null; then
|
|
echo "biome"
|
|
elif command -v prettier &>/dev/null; then
|
|
echo "prettier"
|
|
else
|
|
echo "none"
|
|
fi
|
|
}
|
|
|
|
FORMATTER=$(detect_formatter)
|
|
|
|
# ── Format file ──────────────────────────────────────────────
|
|
case "$FORMATTER" in
|
|
biome)
|
|
if command -v npx &>/dev/null; then
|
|
echo "Formatting $FILE with Biome..."
|
|
npx biome format --write "$FILE"
|
|
exit $?
|
|
else
|
|
echo "Error: npx not found (required for Biome)"
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
prettier)
|
|
if command -v npx &>/dev/null; then
|
|
echo "Formatting $FILE with Prettier..."
|
|
npx prettier --write "$FILE"
|
|
exit $?
|
|
else
|
|
echo "Error: npx not found (required for Prettier)"
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
none)
|
|
echo "No formatter detected (biome.json, .prettierrc, or installed formatter)"
|
|
echo "Skipping format for: $FILE"
|
|
exit 0
|
|
;;
|
|
esac
|