From adbe4f72b902d9c76d7f52779be7609fa1e4fcf7 Mon Sep 17 00:00:00 2001 From: Jackson Vieira Date: Wed, 3 Dec 2025 14:00:03 -0300 Subject: [PATCH] chore: update .gitignore --- .gitignore | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 161fa3f..0baae0f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,31 @@ # Python-generated files __pycache__/ *.cpython*.pyc -evolutionapi.egg-info/ -dist/ \ No newline at end of file +*.pyc +*.pyo +*.pyd + +# Distribution / packaging +dist/ +build/ +*.egg-info/ +.eggs/ + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ + +# uv +.uv/ + +# Ruff +.ruff_cache/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ \ No newline at end of file