Skip to content

Commit 998597b

Browse files
committed
Add gitignore with python and own ignores
1 parent 164c4c9 commit 998597b

File tree

1 file changed

+188
-0
lines changed

1 file changed

+188
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)