Skip to content

Commit 325161c

Browse files
committed
Add python and jetbrains
1 parent 7b2402c commit 325161c

File tree

1 file changed

+245
-0
lines changed

1 file changed

+245
-0
lines changed

.gitignore

Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
# Our own folder for data
2+
data/
3+
4+
# Created by https://www.toptal.com/developers/gitignore/api/python,pycharm+all
5+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm+all
6+
7+
### PyCharm+all ###
8+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
9+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
10+
11+
# User-specific stuff
12+
.idea/**/workspace.xml
13+
.idea/**/tasks.xml
14+
.idea/**/usage.statistics.xml
15+
.idea/**/dictionaries
16+
.idea/**/shelf
17+
18+
# Generated files
19+
.idea/**/contentModel.xml
20+
21+
# Sensitive or high-churn files
22+
.idea/**/dataSources/
23+
.idea/**/dataSources.ids
24+
.idea/**/dataSources.local.xml
25+
.idea/**/sqlDataSources.xml
26+
.idea/**/dynamic.xml
27+
.idea/**/uiDesigner.xml
28+
.idea/**/dbnavigator.xml
29+
30+
# Gradle
31+
.idea/**/gradle.xml
32+
.idea/**/libraries
33+
34+
# Gradle and Maven with auto-import
35+
# When using Gradle or Maven with auto-import, you should exclude module files,
36+
# since they will be recreated, and may cause churn. Uncomment if using
37+
# auto-import.
38+
# .idea/artifacts
39+
# .idea/compiler.xml
40+
# .idea/jarRepositories.xml
41+
# .idea/modules.xml
42+
# .idea/*.iml
43+
# .idea/modules
44+
# *.iml
45+
# *.ipr
46+
47+
# CMake
48+
cmake-build-*/
49+
50+
# Mongo Explorer plugin
51+
.idea/**/mongoSettings.xml
52+
53+
# File-based project format
54+
*.iws
55+
56+
# IntelliJ
57+
out/
58+
59+
# mpeltonen/sbt-idea plugin
60+
.idea_modules/
61+
62+
# JIRA plugin
63+
atlassian-ide-plugin.xml
64+
65+
# Cursive Clojure plugin
66+
.idea/replstate.xml
67+
68+
# Crashlytics plugin (for Android Studio and IntelliJ)
69+
com_crashlytics_export_strings.xml
70+
crashlytics.properties
71+
crashlytics-build.properties
72+
fabric.properties
73+
74+
# Editor-based Rest Client
75+
.idea/httpRequests
76+
77+
# Android studio 3.1+ serialized cache file
78+
.idea/caches/build_file_checksums.ser
79+
80+
### PyCharm+all Patch ###
81+
# Ignores the whole .idea folder and all .iml files
82+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
83+
84+
.idea/
85+
86+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
87+
88+
*.iml
89+
modules.xml
90+
.idea/misc.xml
91+
*.ipr
92+
93+
# Sonarlint plugin
94+
.idea/sonarlint
95+
96+
### Python ###
97+
# Byte-compiled / optimized / DLL files
98+
__pycache__/
99+
*.py[cod]
100+
*$py.class
101+
102+
# C extensions
103+
*.so
104+
105+
# Distribution / packaging
106+
.Python
107+
build/
108+
develop-eggs/
109+
dist/
110+
downloads/
111+
eggs/
112+
.eggs/
113+
parts/
114+
sdist/
115+
var/
116+
wheels/
117+
pip-wheel-metadata/
118+
share/python-wheels/
119+
*.egg-info/
120+
.installed.cfg
121+
*.egg
122+
MANIFEST
123+
124+
# PyInstaller
125+
# Usually these files are written by a python script from a template
126+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
127+
*.manifest
128+
*.spec
129+
130+
# Installer logs
131+
pip-log.txt
132+
pip-delete-this-directory.txt
133+
134+
# Unit test / coverage reports
135+
htmlcov/
136+
.tox/
137+
.nox/
138+
.coverage
139+
.coverage.*
140+
.cache
141+
nosetests.xml
142+
coverage.xml
143+
*.cover
144+
*.py,cover
145+
.hypothesis/
146+
.pytest_cache/
147+
pytestdebug.log
148+
149+
# Translations
150+
*.mo
151+
*.pot
152+
153+
# Django stuff:
154+
*.log
155+
local_settings.py
156+
db.sqlite3
157+
db.sqlite3-journal
158+
159+
# Flask stuff:
160+
instance/
161+
.webassets-cache
162+
163+
# Scrapy stuff:
164+
.scrapy
165+
166+
# Sphinx documentation
167+
docs/_build/
168+
doc/_build/
169+
170+
# PyBuilder
171+
target/
172+
173+
# Jupyter Notebook
174+
.ipynb_checkpoints
175+
176+
# IPython
177+
profile_default/
178+
ipython_config.py
179+
180+
# pyenv
181+
.python-version
182+
183+
# pipenv
184+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
185+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
186+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
187+
# install all needed dependencies.
188+
#Pipfile.lock
189+
190+
# poetry
191+
#poetry.lock
192+
193+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
194+
__pypackages__/
195+
196+
# Celery stuff
197+
celerybeat-schedule
198+
celerybeat.pid
199+
200+
# SageMath parsed files
201+
*.sage.py
202+
203+
# Environments
204+
# .env
205+
.env/
206+
.venv/
207+
env/
208+
venv/
209+
ENV/
210+
env.bak/
211+
venv.bak/
212+
pythonenv*
213+
214+
# Spyder project settings
215+
.spyderproject
216+
.spyproject
217+
218+
# Rope project settings
219+
.ropeproject
220+
221+
# mkdocs documentation
222+
/site
223+
224+
# mypy
225+
.mypy_cache/
226+
.dmypy.json
227+
dmypy.json
228+
229+
# Pyre type checker
230+
.pyre/
231+
232+
# pytype static type analyzer
233+
.pytype/
234+
235+
# operating system-related files
236+
# file properties cache/storage on macOS
237+
*.DS_Store
238+
# thumbnail cache on Windows
239+
Thumbs.db
240+
241+
# profiling data
242+
.prof
243+
244+
245+
# End of https://www.toptal.com/developers/gitignore/api/python,pycharm+all

0 commit comments

Comments
 (0)