Skip to content

Commit 1478eeb

Browse files
committed
Added gitignore
1 parent 3a3387f commit 1478eeb

File tree

1 file changed

+198
-0
lines changed

1 file changed

+198
-0
lines changed

.gitignore

+198
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
2+
# Created by https://www.gitignore.io/api/python,pycharm
3+
# Edit at https://www.gitignore.io/?templates=python,pycharm
4+
5+
### PyCharm ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
# When using Gradle or Maven with auto-import, you should exclude module files,
34+
# since they will be recreated, and may cause churn. Uncomment if using
35+
# auto-import.
36+
# .idea/modules.xml
37+
# .idea/*.iml
38+
# .idea/modules
39+
# *.iml
40+
# *.ipr
41+
42+
# CMake
43+
cmake-build-*/
44+
45+
# Mongo Explorer plugin
46+
.idea/**/mongoSettings.xml
47+
48+
# File-based project format
49+
*.iws
50+
51+
# IntelliJ
52+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### PyCharm Patch ###
76+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
77+
78+
# *.iml
79+
# modules.xml
80+
# .idea/misc.xml
81+
# *.ipr
82+
83+
# Sonarlint plugin
84+
.idea/**/sonarlint/
85+
86+
# SonarQube Plugin
87+
.idea/**/sonarIssues.xml
88+
89+
# Markdown Navigator plugin
90+
.idea/**/markdown-navigator.xml
91+
.idea/**/markdown-navigator/
92+
93+
### Python ###
94+
# Byte-compiled / optimized / DLL files
95+
__pycache__/
96+
*.py[cod]
97+
*$py.class
98+
99+
# C extensions
100+
*.so
101+
102+
# Distribution / packaging
103+
.Python
104+
build/
105+
develop-eggs/
106+
dist/
107+
downloads/
108+
eggs/
109+
.eggs/
110+
lib/
111+
lib64/
112+
parts/
113+
sdist/
114+
var/
115+
wheels/
116+
pip-wheel-metadata/
117+
share/python-wheels/
118+
*.egg-info/
119+
.installed.cfg
120+
*.egg
121+
MANIFEST
122+
123+
# PyInstaller
124+
# Usually these files are written by a python script from a template
125+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
126+
*.manifest
127+
*.spec
128+
129+
# Installer logs
130+
pip-log.txt
131+
pip-delete-this-directory.txt
132+
133+
# Unit test / coverage reports
134+
htmlcov/
135+
.tox/
136+
.nox/
137+
.coverage
138+
.coverage.*
139+
.cache
140+
nosetests.xml
141+
coverage.xml
142+
*.cover
143+
.hypothesis/
144+
.pytest_cache/
145+
146+
# Translations
147+
*.mo
148+
*.pot
149+
150+
# Scrapy stuff:
151+
.scrapy
152+
153+
# Sphinx documentation
154+
docs/_build/
155+
156+
# PyBuilder
157+
target/
158+
159+
# pyenv
160+
.python-version
161+
162+
# pipenv
163+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
164+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
165+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
166+
# install all needed dependencies.
167+
#Pipfile.lock
168+
169+
# celery beat schedule file
170+
celerybeat-schedule
171+
172+
# SageMath parsed files
173+
*.sage.py
174+
175+
# Spyder project settings
176+
.spyderproject
177+
.spyproject
178+
179+
# Rope project settings
180+
.ropeproject
181+
182+
# Mr Developer
183+
.mr.developer.cfg
184+
.project
185+
.pydevproject
186+
187+
# mkdocs documentation
188+
/site
189+
190+
# mypy
191+
.mypy_cache/
192+
.dmypy.json
193+
dmypy.json
194+
195+
# Pyre type checker
196+
.pyre/
197+
198+
# End of https://www.gitignore.io/api/python,pycharm

0 commit comments

Comments
 (0)