From 4fad356660fed45ec40045d743cb187afc1e5b01 Mon Sep 17 00:00:00 2001 From: "@rugpanov" Date: Fri, 19 Jun 2026 13:15:31 +0200 Subject: [PATCH] chore: ignore IntelliJ/JetBrains IDE files Why: Contributors using JetBrains IDEs (IntelliJ IDEA, WebStorm, etc.) generate a .idea/ directory and *.iml project files that should never be committed. What: Add .idea/, *.iml, *.ipr, *.iws, and .idea_modules/ to the root .gitignore. Verification: `git status` no longer shows the untracked .idea/ directory. Co-authored-by: Isaac --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index a01288491..e28020826 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,10 @@ tsconfig.tsbuildinfo # Local docs (not for version control) docs/ + +# IntelliJ IDEA / JetBrains IDEs +.idea/ +*.iml +*.ipr +*.iws +.idea_modules/