From ddd9839ecf9d943b6fa306318674beb369fbce66 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 21 May 2026 03:06:34 +0000 Subject: [PATCH] chore: fix malformed .gitignore entry The previous line concatenated `.vscode` and the dashboard's `tsconfig.tsbuildinfo` path on a single line, so neither was actually being ignored. Split them back into two entries. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 08d94ae8cec..e2baff4baa8 100644 --- a/.gitignore +++ b/.gitignore @@ -120,4 +120,5 @@ crash.log crash.*.log # .terraform.lock.hcl is intentionally NOT ignored — it pins provider versions # and should be committed. -.vscodeui/litellm-dashboard/tsconfig.tsbuildinfo +.vscode +ui/litellm-dashboard/tsconfig.tsbuildinfo