Skip to content

Commit a41f4c1

Browse files
authored
Update .gitignore
1 parent e5092f7 commit a41f4c1

File tree

1 file changed

+187
-0
lines changed

1 file changed

+187
-0
lines changed

.gitignore

Lines changed: 187 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,189 @@
11

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

0 commit comments

Comments
 (0)