Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 4.7 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
  1. # Created by https://www.gitignore.io/api/sbt,java,scala,python,eclipse,intellij,intellij+all
  2. ### Eclipse ###
  3. .metadata
  4. bin/
  5. tmp/
  6. *.tmp
  7. *.bak
  8. *.swp
  9. *~.nib
  10. local.properties
  11. .settings/
  12. .loadpath
  13. .recommenders
  14. PubMed*
  15. *cache_pretrained*
  16. *.crc
  17. *.sst
  18. _SUCCESS*
  19. *stages*
  20. *auxdata*
  21. # External tool builders
  22. .externalToolBuilders/
  23. # Locally stored "Eclipse launch configurations"
  24. *.launch
  25. # PyDev specific (Python IDE for Eclipse)
  26. *.pydevproject
  27. # CDT-specific (C/C++ Development Tooling)
  28. .cproject
  29. # Java annotation processor (APT)
  30. .factorypath
  31. # PDT-specific (PHP Development Tools)
  32. .buildpath
  33. # sbteclipse plugin
  34. .target
  35. # Tern plugin
  36. .tern-project
  37. # TeXlipse plugin
  38. .texlipse
  39. # STS (Spring Tool Suite)
  40. .springBeans
  41. # Code Recommenders
  42. .recommenders/
  43. # Scala IDE specific (Scala & Java development for Eclipse)
  44. .cache-main
  45. .scala_dependencies
  46. .worksheet
  47. ### Eclipse Patch ###
  48. # Eclipse Core
  49. .project
  50. # JDT-specific (Eclipse Java Development Tools)
  51. .classpath
  52. ### Intellij ###
  53. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  54. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  55. # User-specific stuff:
  56. .idea/**/workspace.xml
  57. .idea/**/tasks.xml
  58. .idea/dictionaries
  59. # Sensitive or high-churn files:
  60. .idea/**/dataSources/
  61. .idea/**/dataSources.ids
  62. .idea/**/dataSources.xml
  63. .idea/**/dataSources.local.xml
  64. .idea/**/sqlDataSources.xml
  65. .idea/**/dynamic.xml
  66. .idea/**/uiDesigner.xml
  67. # Gradle:
  68. .idea/**/gradle.xml
  69. .idea/**/libraries
  70. # CMake
  71. cmake-build-debug/
  72. # Mongo Explorer plugin:
  73. .idea/**/mongoSettings.xml
  74. ## File-based project format:
  75. *.iws
  76. ## Plugin-specific files:
  77. # IntelliJ
  78. /out/
  79. # mpeltonen/sbt-idea plugin
  80. .idea_modules/
  81. # JIRA plugin
  82. atlassian-ide-plugin.xml
  83. # Cursive Clojure plugin
  84. .idea/replstate.xml
  85. # Crashlytics plugin (for Android Studio and IntelliJ)
  86. com_crashlytics_export_strings.xml
  87. crashlytics.properties
  88. crashlytics-build.properties
  89. fabric.properties
  90. ### Intellij Patch ###
  91. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  92. *.iml
  93. # modules.xml
  94. # .idea/misc.xml
  95. # *.ipr
  96. # Sonarlint plugin
  97. .idea/sonarlint
  98. ### Intellij+all ###
  99. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  100. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  101. # User-specific stuff:
  102. # Sensitive or high-churn files:
  103. # Gradle:
  104. # CMake
  105. # Mongo Explorer plugin:
  106. ## File-based project format:
  107. ## Plugin-specific files:
  108. # IntelliJ
  109. # mpeltonen/sbt-idea plugin
  110. # JIRA plugin
  111. # Cursive Clojure plugin
  112. # Crashlytics plugin (for Android Studio and IntelliJ)
  113. ### Intellij+all Patch ###
  114. # Ignores the whole idea folder
  115. # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
  116. .idea/
  117. ### Java ###
  118. # Compiled class file
  119. *.class
  120. # Log file
  121. *.log
  122. # BlueJ files
  123. *.ctxt
  124. # Mobile Tools for Java (J2ME)
  125. .mtj.tmp/
  126. # Package Files #
  127. *.jar
  128. *.war
  129. *.ear
  130. *.zip
  131. *.tar.gz
  132. *.rar
  133. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  134. hs_err_pid*
  135. ### Python ###
  136. # Byte-compiled / optimized / DLL files
  137. __pycache__/
  138. *.py[cod]
  139. *$py.class
  140. # C extensions
  141. *.so
  142. # Distribution / packaging
  143. .Python
  144. build/
  145. develop-eggs/
  146. dist/
  147. downloads/
  148. eggs/
  149. .eggs/
  150. lib/
  151. lib64/
  152. parts/
  153. sdist/
  154. var/
  155. wheels/
  156. *.egg-info/
  157. .installed.cfg
  158. *.egg
  159. # PyInstaller
  160. # Usually these files are written by a python script from a template
  161. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  162. *.manifest
  163. *.spec
  164. # Installer logs
  165. pip-log.txt
  166. pip-delete-this-directory.txt
  167. # Unit test / coverage reports
  168. htmlcov/
  169. .tox/
  170. .coverage
  171. .coverage.*
  172. .cache
  173. nosetests.xml
  174. coverage.xml
  175. *.cover
  176. .hypothesis/
  177. # Translations
  178. *.mo
  179. *.pot
  180. # Django stuff:
  181. local_settings.py
  182. # Flask stuff:
  183. instance/
  184. .webassets-cache
  185. # Scrapy stuff:
  186. .scrapy
  187. # Sphinx documentation
  188. docs/_build/
  189. # PyBuilder
  190. target/
  191. # Jupyter Notebook
  192. .ipynb_checkpoints
  193. # pyenv
  194. .python-version
  195. # celery beat schedule file
  196. celerybeat-schedule
  197. # SageMath parsed files
  198. *.sage.py
  199. # Environments
  200. .env
  201. .venv
  202. env/
  203. venv/
  204. ENV/
  205. env.bak/
  206. venv.bak/
  207. # Spyder project settings
  208. .spyderproject
  209. .spyproject
  210. # Rope project settings
  211. .ropeproject
  212. # mkdocs documentation
  213. /site
  214. # mypy
  215. .mypy_cache/
  216. ### SBT ###
  217. # Simple Build Tool
  218. # http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control
  219. dist/*
  220. lib_managed/
  221. src_managed/
  222. project/boot/
  223. project/plugins/project/
  224. .history
  225. .lib/
  226. ### Scala ###
  227. # End of https://www.gitignore.io/api/sbt,java,scala,python,eclipse,intellij,intellij+all
  228. ### Local ###
  229. tmp_pipeline/
  230. tmp_symspell/
  231. test-output-tmp/
  232. spark-warehouse/
  233. /python/python.iml
  234. test_crf_pipeline/
  235. test_*_pipeline/
  236. *metastore_db*
  237. python/src/
  238. .DS_Store
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...