From d3e96e5f30cd3bf2a751cab01a0a46e3ac72a5cf Mon Sep 17 00:00:00 2001 From: shiva108 Date: Sun, 7 Dec 2025 17:07:56 +0100 Subject: [PATCH] chore: add .gitignore file with common patterns for Python, IDEs, and temporary files.chore: add .gitignore file with common patterns for Python, IDEs, and temporary files. --- .gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3edabf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Local files - never commit +ignore/ + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +.eggs/ +dist/ +build/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Temporary files +*.tmp +*.temp +*.log