diff --git a/.claude/settings.local.json b/.claude/settings.local.json deleted file mode 100644 index e65b6f0..0000000 --- a/.claude/settings.local.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(git -C /Users/nahiyan/Development/ghost log --oneline)", - "Bash(git:*)", - "Bash(pnpm install:*)", - "Bash(pnpm build:*)", - "Bash(pnpm test:*)", - "Bash(node:*)", - "Bash(npx tsc:*)", - "Bash(npx vitest:*)", - "Bash(npx biome:*)", - "Bash(just check:*)", - "Bash(just build:*)", - "Bash(npx lefthook:*)", - "Bash(mv commit-msg.pre-entire commit-msg)", - "Bash(mv post-commit.pre-entire post-commit)", - "Bash(mv pre-push.pre-entire pre-push)", - "Bash(mv prepare-commit-msg.pre-entire prepare-commit-msg)", - "Bash(pnpm:*)", - "Bash(npx:*)", - "Bash(grep -v \"^$\")", - "Bash(grep -v \"warning$\")", - "Bash(gh pr:*)" - ] - } -} diff --git a/.gitignore b/.gitignore index 0a1f1f0..e021c5b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules dist *.tsbuildinfo .DS_Store +.claude/settings.local.json diff --git a/packages/ghost-cli/src/viz/index.html b/packages/ghost-cli/src/viz/index.html index 4dc98af..1275067 100644 --- a/packages/ghost-cli/src/viz/index.html +++ b/packages/ghost-cli/src/viz/index.html @@ -396,7 +396,7 @@ const sizes = new Float32Array(totalParticles); let idx = 0; - fleetData.members.forEach((member, mIdx) => { + fleetData.members.forEach((_member, mIdx) => { const center = memberPositions[mIdx]; const baseColor = memberColors[mIdx]; @@ -543,10 +543,10 @@ // ─── LABELS ───────────────────────────────────────────── function buildLabels() { - fleetData.members.forEach((member, i) => { + fleetData.members.forEach((_member) => { const el = document.createElement('div'); el.className = 'fingerprint-label'; - el.textContent = member.id; + el.textContent = _member.id; document.body.appendChild(el); memberLabels.push(el); });