Skip to content

Commit 535b670

Browse files
committed
Git Ignore updted
1 parent c1c3f6c commit 535b670

File tree

1 file changed

+174
-0
lines changed

1 file changed

+174
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
3+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
4+
5+
6+
# User-specific stuff:
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/dictionaries
10+
.idea/
11+
assignment1/.idea/
12+
#Saved Parameters
13+
*.npy
14+
*.pickle
15+
*.conll
16+
*.ckpt
17+
18+
19+
#Zip Files
20+
*.zip
21+
*.tar.gz
22+
*.tar
23+
24+
#Datasets
25+
glove.6B.50d.txt
26+
27+
# Sensitive or high-churn files:
28+
.idea/**/dataSources/
29+
.idea/**/dataSources.ids
30+
.idea/**/dataSources.xml
31+
.idea/**/dataSources.local.xml
32+
.idea/**/sqlDataSources.xml
33+
.idea/**/dynamic.xml
34+
.idea/**/uiDesigner.xml
35+
36+
# Gradle:
37+
.idea/**/gradle.xml
38+
.idea/**/libraries
39+
40+
# CMake
41+
cmake-build-debug/
42+
cmake-build-release/
43+
44+
# Mongo Explorer plugin:
45+
.idea/**/mongoSettings.xml
46+
47+
## File-based project format:
48+
*.iws
49+
50+
## Plugin-specific files:
51+
52+
# IntelliJ
53+
out/
54+
55+
# mpeltonen/sbt-idea plugin
56+
.idea_modules/
57+
58+
# JIRA plugin
59+
atlassian-ide-plugin.xml
60+
61+
# Cursive Clojure plugin
62+
.idea/replstate.xml
63+
64+
# Crashlytics plugin (for Android Studio and IntelliJ)
65+
com_crashlytics_export_strings.xml
66+
crashlytics.properties
67+
crashlytics-build.properties
68+
fabric.properties
69+
70+
71+
# Byte-compiled / optimized / DLL files
72+
__pycache__/
73+
*.py[cod]
74+
*$py.class
75+
76+
# C extensions
77+
*.so
78+
79+
# Distribution / packaging
80+
.Python
81+
build/
82+
develop-eggs/
83+
dist/
84+
downloads/
85+
eggs/
86+
.eggs/
87+
lib/
88+
lib64/
89+
parts/
90+
sdist/
91+
var/
92+
wheels/
93+
*.egg-info/
94+
.installed.cfg
95+
*.egg
96+
MANIFEST
97+
98+
# PyInstaller
99+
# Usually these files are written by a python script from a template
100+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
101+
*.manifest
102+
*.spec
103+
104+
# Installer logs
105+
pip-log.txt
106+
pip-delete-this-directory.txt
107+
108+
# Unit test / coverage reports
109+
htmlcov/
110+
.tox/
111+
.coverage
112+
.coverage.*
113+
.cache
114+
nosetests.xml
115+
coverage.xml
116+
*.cover
117+
.hypothesis/
118+
119+
# Translations
120+
*.mo
121+
*.pot
122+
123+
# Django stuff:
124+
*.log
125+
.static_storage/
126+
.media/
127+
local_settings.py
128+
129+
# Flask stuff:
130+
instance/
131+
.webassets-cache
132+
133+
# Scrapy stuff:
134+
.scrapy
135+
136+
# Sphinx documentation
137+
docs/_build/
138+
139+
# PyBuilder
140+
target/
141+
142+
# Jupyter Notebook
143+
.ipynb_checkpoints
144+
145+
# pyenv
146+
.python-version
147+
148+
# celery beat schedule file
149+
celerybeat-schedule
150+
151+
# SageMath parsed files
152+
*.sage.py
153+
154+
# Environments
155+
.env
156+
.venv
157+
env/
158+
venv/
159+
ENV/
160+
env.bak/
161+
venv.bak/
162+
163+
# Spyder project settings
164+
.spyderproject
165+
.spyproject
166+
167+
# Rope project settings
168+
.ropeproject
169+
170+
# mkdocs documentation
171+
/site
172+
173+
# mypy
174+
.mypy_cache/

0 commit comments

Comments
 (0)