From b99a3912f84cb8c1ce635be1da3fa68b0a05086b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 04:51:38 +0000 Subject: [PATCH] Initial commit: Add python-stub-generator project --- .gitignore | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..09f401f --- /dev/null +++ b/.gitignore @@ -0,0 +1,70 @@ +# Python +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Type stubs +*.pyi +!stubgen/__init__.py + +# PyInstaller +*.manifest +*.spec + +# Testing +.pytest_cache/ +.coverage +.coverage. +htmlcov/ +.tox/ +.nox/ +coverage.xml +*.cover + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Ruff +.ruff_cache/ + +# Virtual environments +.env +.venv/ +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# IDEs +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Logs +*.log