From 0a9f2478903f8622bbef1d2c4882e819ff1b8b85 Mon Sep 17 00:00:00 2001 From: raftaar1191 Date: Thu, 4 Sep 2025 03:41:28 +0530 Subject: [PATCH 1/2] Add .vscode/ to .gitignore - Prevents VS Code workspace settings from being committed - Allows developers to customize local IDE configuration - Follows common best practices for PHP projects - Resolves issue #84 --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 82c305d0..abb03168 100644 --- a/.gitignore +++ b/.gitignore @@ -14,13 +14,14 @@ vendor/ .DS_store? ############ -## AI Tools +## AI Tools and IDEs ############ .claude/ CLAUDE.md .clinerules/ .cursor/ +.vscode/ GEMINI.md ############ From 423b963bc88f218441b69e68eac2b9df24857238 Mon Sep 17 00:00:00 2001 From: raftaar1191 Date: Thu, 4 Sep 2025 20:26:45 +0530 Subject: [PATCH 2/2] gitignore: ignore JetBrains workspace files, keep shareable .idea settings --- .gitignore | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index abb03168..5f4d93c6 100644 --- a/.gitignore +++ b/.gitignore @@ -14,16 +14,22 @@ vendor/ .DS_store? ############ -## AI Tools and IDEs +## AI Tools ############ .claude/ CLAUDE.md .clinerules/ .cursor/ -.vscode/ GEMINI.md +############ +## IDEs +############ + +.idea/ +.vscode/ + ############ ## PHPUnit ############