From f1ac293874c1140d4fa828318002024d683ca4d3 Mon Sep 17 00:00:00 2001 From: Itamar Shalev Date: Mon, 30 Jun 2025 16:25:40 +0300 Subject: [PATCH 1/2] gitignore: Ignore common IDE folders Ignore .vscode and .idea to keep the repository clean and avoid cluttering it with IDE-specific configuration files. Signed-off-by: Itamar Shalev --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 7b1bcb0..bf2f11b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,9 @@ +# VsCode IDE +.vscode/ + +# JetBrains IDEs +.idea/ + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] From 781186d198fdba82ef38363af45a4d4cddb925ca Mon Sep 17 00:00:00 2001 From: Itamar Shalev Date: Mon, 30 Jun 2025 16:59:22 +0300 Subject: [PATCH 2/2] gitignore: Fix group IDEs in the same gitignore section Signed-off-by: Itamar Shalev --- .gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bf2f11b..ec0068b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,5 @@ -# VsCode IDE +# IDEs .vscode/ - -# JetBrains IDEs .idea/ # Byte-compiled / optimized / DLL files