Skip to content

Commit dd79ee9

Browse files
committed
chore: update .gitignore to include additional ignored files and directories
1 parent d97bcd2 commit dd79ee9

File tree

1 file changed

+217
-1
lines changed

1 file changed

+217
-1
lines changed

.gitignore

Lines changed: 217 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,220 @@ _trash/
2727
*.pyc
2828

2929
*.egg-info/
30-
.pytest_cache/
30+
.pytest_cache/
31+
# Byte-compiled / optimized / DLL files
32+
__pycache__/
33+
*.py[codz]
34+
*$py.class
35+
36+
# C extensions
37+
*.so
38+
39+
# Distribution / packaging
40+
.Python
41+
build/
42+
develop-eggs/
43+
dist/
44+
downloads/
45+
eggs/
46+
.eggs/
47+
lib/
48+
lib64/
49+
parts/
50+
sdist/
51+
var/
52+
wheels/
53+
share/python-wheels/
54+
*.egg-info/
55+
.installed.cfg
56+
*.egg
57+
MANIFEST
58+
59+
# PyInstaller
60+
# Usually these files are written by a python script from a template
61+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
62+
*.manifest
63+
*.spec
64+
65+
# Installer logs
66+
pip-log.txt
67+
pip-delete-this-directory.txt
68+
69+
# Unit test / coverage reports
70+
htmlcov/
71+
.tox/
72+
.nox/
73+
.coverage
74+
.coverage.*
75+
.cache
76+
nosetests.xml
77+
coverage.xml
78+
*.cover
79+
*.py.cover
80+
.hypothesis/
81+
.pytest_cache/
82+
cover/
83+
84+
# Translations
85+
*.mo
86+
*.pot
87+
88+
# Django stuff:
89+
*.log
90+
local_settings.py
91+
db.sqlite3
92+
db.sqlite3-journal
93+
94+
# Flask stuff:
95+
instance/
96+
.webassets-cache
97+
98+
# Scrapy stuff:
99+
.scrapy
100+
101+
# Sphinx documentation
102+
docs/_build/
103+
104+
# PyBuilder
105+
.pybuilder/
106+
target/
107+
108+
# Jupyter Notebook
109+
.ipynb_checkpoints
110+
111+
# IPython
112+
profile_default/
113+
ipython_config.py
114+
115+
# pyenv
116+
# For a library or package, you might want to ignore these files since the code is
117+
# intended to run in multiple environments; otherwise, check them in:
118+
# .python-version
119+
120+
# pipenv
121+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
122+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
123+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
124+
# install all needed dependencies.
125+
# Pipfile.lock
126+
127+
# UV
128+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
129+
# This is especially recommended for binary packages to ensure reproducibility, and is more
130+
# commonly ignored for libraries.
131+
# uv.lock
132+
133+
# poetry
134+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
135+
# This is especially recommended for binary packages to ensure reproducibility, and is more
136+
# commonly ignored for libraries.
137+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
138+
# poetry.lock
139+
# poetry.toml
140+
141+
# pdm
142+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
143+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
144+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
145+
# pdm.lock
146+
# pdm.toml
147+
.pdm-python
148+
.pdm-build/
149+
150+
# pixi
151+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
152+
# pixi.lock
153+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
154+
# in the .venv directory. It is recommended not to include this directory in version control.
155+
.pixi
156+
157+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
158+
__pypackages__/
159+
160+
# Celery stuff
161+
celerybeat-schedule
162+
celerybeat.pid
163+
164+
# Redis
165+
*.rdb
166+
*.aof
167+
*.pid
168+
169+
# RabbitMQ
170+
mnesia/
171+
rabbitmq/
172+
rabbitmq-data/
173+
174+
# ActiveMQ
175+
activemq-data/
176+
177+
# SageMath parsed files
178+
*.sage.py
179+
180+
# Environments
181+
.env
182+
.envrc
183+
.venv
184+
env/
185+
venv/
186+
ENV/
187+
env.bak/
188+
venv.bak/
189+
190+
# Spyder project settings
191+
.spyderproject
192+
.spyproject
193+
194+
# Rope project settings
195+
.ropeproject
196+
197+
# mkdocs documentation
198+
/site
199+
200+
# mypy
201+
.mypy_cache/
202+
.dmypy.json
203+
dmypy.json
204+
205+
# Pyre type checker
206+
.pyre/
207+
208+
# pytype static type analyzer
209+
.pytype/
210+
211+
# Cython debug symbols
212+
cython_debug/
213+
214+
# PyCharm
215+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
216+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
217+
# and can be added to the global gitignore or merged into this file. For a more nuclear
218+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
219+
# .idea/
220+
221+
# Abstra
222+
# Abstra is an AI-powered process automation framework.
223+
# Ignore directories containing user credentials, local state, and settings.
224+
# Learn more at https://abstra.io/docs
225+
.abstra/
226+
227+
# Visual Studio Code
228+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
229+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
230+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
231+
# you could uncomment the following to ignore the entire vscode folder
232+
# .vscode/
233+
234+
# Ruff stuff:
235+
.ruff_cache/
236+
237+
# PyPI configuration file
238+
.pypirc
239+
240+
# Marimo
241+
marimo/_static/
242+
marimo/_lsp/
243+
__marimo__/
244+
245+
# Streamlit
246+
.streamlit/secrets.toml

0 commit comments

Comments
 (0)