1
+ Skip to content
2
+
3
+ Search or jump to…
4
+
5
+ Pull requests
6
+ Issues
7
+ Marketplace
8
+ Explore
9
+
10
+ @tanujjain
11
+ 1
12
+ 0 0 tanujjain /testrepo
13
+ Code Issues 0 Pull requests 0 Projects 0 Wiki Insights Settings
14
+ testrepo /.gitignore
15
+ @tanujjain tanujjain Updated gitignore to allow visualization notebook to get pushed.
16
+ bec7767 16 days ago
17
+ 226 lines (174 sloc) 3.34 KB
18
+
19
+ # Created by https://www.gitignore.io/api/linux,macos,python,pycharm
20
+
21
+ # ## Linux ###
22
+ * ~
23
+
24
+ # temporary files which can be created if a process still has a handle open of a deleted file
25
+ .fuse_hidden *
26
+
27
+ # KDE directory preferences
28
+ .directory
29
+
30
+ # Linux trash folder which might appear on any partition or disk
31
+ .Trash- *
32
+
33
+ # .nfs files are created when an open file is removed but is still being accessed
34
+ .nfs *
35
+
36
+ # ## macOS ###
37
+ # General
38
+ .DS_Store
39
+ .AppleDouble
40
+ .LSOverride
41
+
42
+ # Icon must end with two \r
43
+ Icon
44
+
45
+ # Thumbnails
46
+ ._ *
47
+
48
+ # Files that might appear in the root of a volume
49
+ .DocumentRevisions-V100
50
+ .fseventsd
51
+ .Spotlight-V100
52
+ .TemporaryItems
53
+ .Trashes
54
+ .VolumeIcon.icns
55
+ .com.apple.timemachine.donotpresent
56
+
57
+ # Directories potentially created on remote AFP share
58
+ .AppleDB
59
+ .AppleDesktop
60
+ Network Trash Folder
61
+ Temporary Items
62
+ .apdisk
63
+
64
+ # ## PyCharm ###
65
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
66
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
67
+
68
+ # User-specific stuff
69
+ .idea
70
+ .idea /** /workspace.xml
71
+ .idea /** /tasks.xml
72
+ .idea /** /usage.statistics.xml
73
+ .idea /** /dictionaries
74
+ .idea /** /shelf
75
+
76
+ # Sensitive or high-churn files
77
+ .idea /** /dataSources /
78
+ .idea /** /dataSources.ids
79
+ .idea /** /dataSources.local.xml
80
+ .idea /** /sqlDataSources.xml
81
+ .idea /** /dynamic.xml
82
+ .idea /** /uiDesigner.xml
83
+ .idea /** /dbnavigator.xml
84
+
85
+ # Gradle
86
+ .idea /** /gradle.xml
87
+ .idea /** /libraries
88
+
89
+ # CMake
90
+ cmake-build- * /
91
+
92
+ # Mongo Explorer plugin
93
+ .idea /** /mongoSettings.xml
94
+
95
+ # File-based project format
96
+ * .iws
97
+
98
+ # IntelliJ
99
+ out /
100
+
101
+ # mpeltonen/sbt-idea plugin
102
+ .idea_modules /
103
+
104
+ # JIRA plugin
105
+ atlassian-ide-plugin.xml
106
+
107
+ # Cursive Clojure plugin
108
+ .idea /replstate.xml
109
+
110
+ # Crashlytics plugin (for Android Studio and IntelliJ)
111
+ com_crashlytics_export_strings.xml
112
+ crashlytics.properties
113
+ crashlytics-build.properties
114
+ fabric.properties
115
+
116
+ # Editor-based Rest Client
117
+ .idea /httpRequests
118
+
119
+ # ## PyCharm Patch ###
120
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
121
+
122
+ # *.iml
123
+ # modules.xml
124
+ # .idea/misc.xml
125
+ # *.ipr
126
+
127
+ # Sonarlint plugin
128
+ .idea /sonarlint
129
+
130
+ # ## Python ###
131
+ # Byte-compiled / optimized / DLL files
132
+ __pycache__ /
133
+ * .py [cod ]
134
+ * $py.class
135
+
136
+ # C extensions
137
+ * .so
138
+
139
+ # Distribution / packaging
140
+ .Python
141
+ build /
142
+ develop-eggs /
143
+ dist /
144
+ downloads /
145
+ eggs /
146
+ .eggs /
147
+ lib /
148
+ lib64 /
149
+ parts /
150
+ sdist /
151
+ var /
152
+ wheels /
153
+ * .egg-info /
154
+ .installed.cfg
155
+ * .egg
156
+ MANIFEST
157
+
158
+ # PyInstaller
159
+ # Usually these files are written by a python script from a template
160
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
161
+ * .manifest
162
+ * .spec
163
+
164
+ # Installer logs
165
+ pip-log.txt
166
+ pip-delete-this-directory.txt
167
+
168
+ # Unit test / coverage reports
169
+ htmlcov /
170
+ .tox /
171
+ .coverage
172
+ .coverage. *
173
+ .cache
174
+ nosetests.xml
175
+ coverage.xml
176
+ * .cover
177
+ .hypothesis /
178
+ .pytest_cache /
179
+
180
+ # Translations
181
+ * .mo
182
+ * .pot
183
+
184
+ # Django stuff:
185
+ * .log
186
+ local_settings.py
187
+ db.sqlite3
188
+
189
+ # Flask stuff:
190
+ instance /
191
+ .webassets-cache
192
+
193
+ # Scrapy stuff:
194
+ .scrapy
195
+
196
+ # Sphinx documentation
197
+ docs /_build /
198
+
199
+ # PyBuilder
200
+ target /
201
+
202
+ # Jupyter Notebook
203
+ .ipynb_checkpoints
204
+
205
+ # pyenv
206
+ .python-version
207
+
208
+ # celery beat schedule file
209
+ celerybeat-schedule
210
+
211
+ # SageMath parsed files
212
+ * .sage.py
213
+
214
+ # Environments
215
+ .env
216
+ .venv
217
+ env /
218
+ venv /
219
+ ENV /
220
+ env.bak /
221
+ venv.bak /
222
+
223
+ # Spyder project settings
224
+ .spyderproject
225
+ .spyproject
226
+
227
+ # Rope project settings
228
+ .ropeproject
229
+
230
+ # mkdocs documentation
231
+ /site
232
+
233
+ # mypy
234
+ .mypy_cache /
235
+
236
+ # ## Python Patch ###
237
+ .venv /
238
+
239
+
240
+ # End of https://www.gitignore.io/api/linux,macos,python,pycharm
241
+
242
+ # Customized
243
+ Dockerfile_2
244
+ images
0 commit comments