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.3 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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
  1. # ---> Java
  2. *.class
  3. # Mobile Tools for Java (J2ME)
  4. .mtj.tmp/
  5. # Package Files #
  6. *.jar
  7. *.war
  8. *.ear
  9. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  10. hs_err_pid*
  11. # ---> Maven
  12. target/
  13. pom.xml.tag
  14. pom.xml.releaseBackup
  15. pom.xml.versionsBackup
  16. pom.xml.next
  17. release.properties
  18. dependency-reduced-pom.xml
  19. buildNumber.properties
  20. .mvn/timing.properties
  21. # ---> macOS
  22. .DS_Store
  23. .AppleDouble
  24. .LSOverride
  25. # Icon must end with two \r
  26. Icon
  27. # Thumbnails
  28. ._*
  29. # Files that might appear in the root of a volume
  30. .DocumentRevisions-V100
  31. .fseventsd
  32. .Spotlight-V100
  33. .TemporaryItems
  34. .Trashes
  35. .VolumeIcon.icns
  36. # Directories potentially created on remote AFP share
  37. .AppleDB
  38. .AppleDesktop
  39. Network Trash Folder
  40. Temporary Items
  41. .apdisk
  42. # ---> Windows
  43. # Windows image file caches
  44. Thumbs.db
  45. ehthumbs.db
  46. # Folder config file
  47. Desktop.ini
  48. # Recycle Bin used on file shares
  49. $RECYCLE.BIN/
  50. # Windows Installer files
  51. *.cab
  52. *.msi
  53. *.msm
  54. *.msp
  55. # Windows shortcuts
  56. *.lnk
  57. # ---> Python
  58. # Byte-compiled / optimized / DLL files
  59. __pycache__/
  60. *.py[cod]
  61. *$py.class
  62. # C extensions
  63. *.so
  64. # Distribution / packaging
  65. .Python
  66. env/
  67. build/
  68. develop-eggs/
  69. dist/
  70. downloads/
  71. eggs/
  72. .eggs/
  73. lib/
  74. lib64/
  75. parts/
  76. sdist/
  77. var/
  78. *.egg-info/
  79. .installed.cfg
  80. *.egg
  81. # PyInstaller
  82. # Usually these files are written by a python script from a template
  83. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  84. *.manifest
  85. *.spec
  86. # Installer logs
  87. pip-log.txt
  88. pip-delete-this-directory.txt
  89. # Unit test / coverage reports
  90. htmlcov/
  91. .tox/
  92. .coverage
  93. .coverage.*
  94. .cache
  95. nosetests.xml
  96. coverage.xml
  97. *,cover
  98. # Translations
  99. *.mo
  100. *.pot
  101. # Django stuff:
  102. *.log
  103. # Sphinx documentation
  104. docs/_build/
  105. # PyBuilder
  106. target/
  107. # ---> Perl
  108. /blib/
  109. /.build/
  110. _build/
  111. cover_db/
  112. inc/
  113. Build
  114. !Build/
  115. Build.bat
  116. .last_cover_stats
  117. /Makefile
  118. /Makefile.old
  119. /MANIFEST.bak
  120. /META.yml
  121. /META.json
  122. /MYMETA.*
  123. nytprof.out
  124. /pm_to_blib
  125. *.o
  126. *.bs
  127. /_eumm/
  128. # ---> NetBeans
  129. nbproject/private/
  130. build/
  131. nbbuild/
  132. dist/
  133. nbdist/
  134. nbactions.xml
  135. nb-configuration.xml
  136. .nb-gradle/
  137. # ---> Linux
  138. *~
  139. # KDE directory preferences
  140. .directory
  141. # Linux trash folder which might appear on any partition or disk
  142. .Trash-*
  143. # ---> JetBrains
  144. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  145. *.iml
  146. ## Directory-based project format:
  147. .idea/
  148. # if you remove the above rule, at least ignore the following:
  149. # User-specific stuff:
  150. # .idea/workspace.xml
  151. # .idea/tasks.xml
  152. # .idea/dictionaries
  153. # Sensitive or high-churn files:
  154. # .idea/dataSources.ids
  155. # .idea/dataSources.xml
  156. # .idea/sqlDataSources.xml
  157. # .idea/dynamic.xml
  158. # .idea/uiDesigner.xml
  159. # Gradle:
  160. # .idea/gradle.xml
  161. # .idea/libraries
  162. # Mongo Explorer plugin:
  163. # .idea/mongoSettings.xml
  164. ## File-based project format:
  165. *.ipr
  166. *.iws
  167. ## Plugin-specific files:
  168. # IntelliJ
  169. /out/
  170. # mpeltonen/sbt-idea plugin
  171. .idea_modules/
  172. # JIRA plugin
  173. atlassian-ide-plugin.xml
  174. # Crashlytics plugin (for Android Studio and IntelliJ)
  175. com_crashlytics_export_strings.xml
  176. crashlytics.properties
  177. crashlytics-build.properties
  178. # ---> Emacs
  179. # -*- mode: gitignore; -*-
  180. *~
  181. \#*\#
  182. /.emacs.desktop
  183. /.emacs.desktop.lock
  184. *.elc
  185. auto-save-list
  186. tramp
  187. .\#*
  188. # Org-mode
  189. .org-id-locations
  190. *_archive
  191. # flymake-mode
  192. *_flymake.*
  193. # eshell files
  194. /eshell/history
  195. /eshell/lastdir
  196. # elpa packages
  197. /elpa/
  198. # reftex files
  199. *.rel
  200. # AUCTeX auto folder
  201. /auto/
  202. # cask packages
  203. .cask/
  204. # ---> Eclipse
  205. *.pydevproject
  206. .metadata
  207. .gradle
  208. bin/
  209. tmp/
  210. *.tmp
  211. *.bak
  212. *.swp
  213. *~.nib
  214. local.properties
  215. .settings/
  216. .loadpath
  217. # Eclipse Core
  218. .project
  219. # External tool builders
  220. .externalToolBuilders/
  221. # Locally stored "Eclipse launch configurations"
  222. *.launch
  223. # CDT-specific
  224. .cproject
  225. # JDT-specific (Eclipse Java Development Tools)
  226. .classpath
  227. # Java annotation processor (APT)
  228. .factorypath
  229. # PDT-specific
  230. .buildpath
  231. # sbteclipse plugin
  232. .target
  233. # TeXlipse plugin
  234. .texlipse
  235. # ---> C++
  236. # Compiled Object files
  237. *.slo
  238. *.lo
  239. *.o
  240. *.obj
  241. # Precompiled Headers
  242. *.gch
  243. *.pch
  244. # Compiled Dynamic libraries
  245. *.so
  246. *.dylib
  247. *.dll
  248. # Fortran module files
  249. *.mod
  250. # Compiled Static libraries
  251. *.lai
  252. *.la
  253. *.a
  254. *.lib
  255. # Executables
  256. *.exe
  257. *.out
  258. *.app
  259. # ---> C
  260. # Object files
  261. *.o
  262. *.ko
  263. *.obj
  264. *.elf
  265. # Precompiled Headers
  266. *.gch
  267. *.pch
  268. # Libraries
  269. *.lib
  270. *.a
  271. *.la
  272. *.lo
  273. # Shared objects (inc. Windows DLLs)
  274. *.dll
  275. *.so
  276. *.so.*
  277. *.dylib
  278. # Executables
  279. *.exe
  280. *.out
  281. *.app
  282. *.i*86
  283. *.x86_64
  284. *.hex
  285. # Debug files
  286. *.dSYM/
Tip!

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

Comments

Loading...