Skip to content

Commit 0f5e6b0

Browse files
committed
chore: gitignore
1 parent 5c62c4a commit 0f5e6b0

1 file changed

Lines changed: 199 additions & 0 deletions

File tree

.gitignore

Lines changed: 199 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
2+
3+
### Created by https://www.gitignore.io
4+
### direnv ###
5+
.direnv
6+
.envrc
7+
8+
### Vim ###
9+
# Swap
10+
[._]*.s[a-v][a-z]
11+
!*.svg # comment out if you don't need vector files
12+
[._]*.sw[a-p]
13+
[._]s[a-rt-v][a-z]
14+
[._]ss[a-gi-z]
15+
[._]sw[a-p]
16+
17+
# Session
18+
Session.vim
19+
Sessionx.vim
20+
21+
# Temporary
22+
.netrwhist
23+
*~
24+
# Auto-generated tag files
25+
tags
26+
# Persistent undo
27+
[._]*.un~
28+
29+
### Python ###
30+
# Byte-compiled / optimized / DLL files
31+
__pycache__/
32+
*.py[cod]
33+
*$py.class
34+
35+
# C extensions
36+
*.so
37+
38+
# Distribution / packaging
39+
.Python
40+
build/
41+
develop-eggs/
42+
dist/
43+
downloads/
44+
eggs/
45+
.eggs/
46+
lib/
47+
lib64/
48+
parts/
49+
sdist/
50+
var/
51+
wheels/
52+
share/python-wheels/
53+
*.egg-info/
54+
.installed.cfg
55+
*.egg
56+
MANIFEST
57+
58+
# PyInstaller
59+
# Usually these files are written by a python script from a template
60+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
61+
*.manifest
62+
*.spec
63+
64+
# Installer logs
65+
pip-log.txt
66+
pip-delete-this-directory.txt
67+
68+
# Unit test / coverage reports
69+
htmlcov/
70+
.tox/
71+
.nox/
72+
.coverage
73+
.coverage.*
74+
.cache
75+
nosetests.xml
76+
coverage.xml
77+
*.cover
78+
*.py,cover
79+
.hypothesis/
80+
.pytest_cache/
81+
cover/
82+
83+
# Translations
84+
*.mo
85+
*.pot
86+
87+
# Django stuff:
88+
*.log
89+
local_settings.py
90+
db.sqlite3
91+
db.sqlite3-journal
92+
93+
# Flask stuff:
94+
instance/
95+
.webassets-cache
96+
97+
# Scrapy stuff:
98+
.scrapy
99+
100+
# Sphinx documentation
101+
docs/_build/
102+
103+
# PyBuilder
104+
.pybuilder/
105+
target/
106+
107+
# Jupyter Notebook
108+
.ipynb_checkpoints
109+
110+
# IPython
111+
profile_default/
112+
ipython_config.py
113+
114+
# pyenv
115+
# For a library or package, you might want to ignore these files since the code is
116+
# intended to run in multiple environments; otherwise, check them in:
117+
# .python-version
118+
119+
# pipenv
120+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
121+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
122+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
123+
# install all needed dependencies.
124+
#Pipfile.lock
125+
126+
# poetry
127+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
128+
# This is especially recommended for binary packages to ensure reproducibility, and is more
129+
# commonly ignored for libraries.
130+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
131+
#poetry.lock
132+
133+
# pdm
134+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
135+
#pdm.lock
136+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
137+
# in version control.
138+
# https://pdm.fming.dev/#use-with-ide
139+
.pdm.toml
140+
141+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
142+
__pypackages__/
143+
144+
# Celery stuff
145+
celerybeat-schedule
146+
celerybeat.pid
147+
148+
# SageMath parsed files
149+
*.sage.py
150+
151+
# Environments
152+
.env
153+
.venv
154+
env/
155+
venv/
156+
ENV/
157+
env.bak/
158+
venv.bak/
159+
160+
# Spyder project settings
161+
.spyderproject
162+
.spyproject
163+
164+
# Rope project settings
165+
.ropeproject
166+
167+
# mkdocs documentation
168+
/site
169+
170+
# mypy
171+
.mypy_cache/
172+
.dmypy.json
173+
dmypy.json
174+
175+
# Pyre type checker
176+
.pyre/
177+
178+
# pytype static type analyzer
179+
.pytype/
180+
181+
# Cython debug symbols
182+
cython_debug/
183+
184+
# PyCharm
185+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
186+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
187+
# and can be added to the global gitignore or merged into this file. For a more nuclear
188+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
189+
#.idea/
190+
191+
### Python Patch ###
192+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
193+
poetry.toml
194+
195+
# ruff
196+
.ruff_cache/
197+
198+
# LSP config files
199+
pyrightconfig.json

0 commit comments

Comments
 (0)