From 4c9cfb0487710816611d1c9257fdfee57dddb7d2 Mon Sep 17 00:00:00 2001 From: emreumar Date: Sat, 18 Jul 2026 19:52:39 +0300 Subject: [PATCH] fix(git): add common Python entries to .gitignore Signed-off-by: emreumar --- .gitignore | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4bc2558..361d133 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,19 @@ -# BUG: This .gitignore is incomplete - missing common Python entries venv/ +.venv/ .vscode/ .idea/ + +# Python artifacts +__pycache__/ +*.pyc +*.pyo +*.pyd + +# Environments and credentials +.env + +# Testing and builds +.pytest_cache/ +*.egg-info/ +dist/ +build/