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 3.8 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
  1. ### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Python.gitignore
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. build/
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. .eggs/
  16. lib/
  17. lib64/
  18. parts/
  19. sdist/
  20. var/
  21. wheels/
  22. share/python-wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .nox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. *.py,cover
  46. .hypothesis/
  47. .pytest_cache/
  48. cover/
  49. # Translations
  50. *.mo
  51. *.pot
  52. # Django stuff:
  53. *.log
  54. local_settings.py
  55. db.sqlite3
  56. db.sqlite3-journal
  57. # Flask stuff:
  58. instance/
  59. .webassets-cache
  60. # Scrapy stuff:
  61. .scrapy
  62. # Sphinx documentation
  63. docs/_build/
  64. # PyBuilder
  65. .pybuilder/
  66. target/
  67. # Jupyter Notebook
  68. .ipynb_checkpoints
  69. # IPython
  70. profile_default/
  71. ipython_config.py
  72. # pyenv
  73. # For a library or package, you might want to ignore these files since the code is
  74. # intended to run in multiple environments; otherwise, check them in:
  75. # .python-version
  76. # pipenv
  77. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  78. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  79. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  80. # install all needed dependencies.
  81. #Pipfile.lock
  82. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  83. __pypackages__/
  84. # Celery stuff
  85. celerybeat-schedule
  86. celerybeat.pid
  87. # SageMath parsed files
  88. *.sage.py
  89. # Environments
  90. .env
  91. .venv
  92. env/
  93. venv/
  94. ENV/
  95. env.bak/
  96. venv.bak/
  97. # Spyder project settings
  98. .spyderproject
  99. .spyproject
  100. # Rope project settings
  101. .ropeproject
  102. # mkdocs documentation
  103. /site
  104. # mypy
  105. .mypy_cache/
  106. .dmypy.json
  107. dmypy.json
  108. # Pyre type checker
  109. .pyre/
  110. # pytype static type analyzer
  111. .pytype/
  112. # Cython debug symbols
  113. cython_debug/
  114. ### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/Vim.gitignore
  115. # Swap
  116. [._]*.s[a-v][a-z]
  117. !*.svg # comment out if you don't need vector files
  118. [._]*.sw[a-p]
  119. [._]s[a-rt-v][a-z]
  120. [._]ss[a-gi-z]
  121. [._]sw[a-p]
  122. # Session
  123. Session.vim
  124. Sessionx.vim
  125. # Temporary
  126. .netrwhist
  127. *~
  128. # Auto-generated tag files
  129. tags
  130. # Persistent undo
  131. [._]*.un~
  132. ### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/Windows.gitignore
  133. # Windows thumbnail cache files
  134. Thumbs.db
  135. Thumbs.db:encryptable
  136. ehthumbs.db
  137. ehthumbs_vista.db
  138. # Dump file
  139. *.stackdump
  140. # Folder config file
  141. [Dd]esktop.ini
  142. # Recycle Bin used on file shares
  143. $RECYCLE.BIN/
  144. # Windows Installer files
  145. *.cab
  146. *.msi
  147. *.msix
  148. *.msm
  149. *.msp
  150. # Windows shortcuts
  151. *.lnk
  152. ### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/Linux.gitignore
  153. *~
  154. # temporary files which can be created if a process still has a handle open of a deleted file
  155. .fuse_hidden*
  156. # KDE directory preferences
  157. .directory
  158. # Linux trash folder which might appear on any partition or disk
  159. .Trash-*
  160. # .nfs files are created when an open file is removed but is still being accessed
  161. .nfs*
  162. ### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Global/macOS.gitignore
  163. # General
  164. .DS_Store
  165. .AppleDouble
  166. .LSOverride
  167. # Icon must end with two \r
  168. Icon
  169. # Thumbnails
  170. ._*
  171. # Files that might appear in the root of a volume
  172. .DocumentRevisions-V100
  173. .fseventsd
  174. .Spotlight-V100
  175. .TemporaryItems
  176. .Trashes
  177. .VolumeIcon.icns
  178. .com.apple.timemachine.donotpresent
  179. # Directories potentially created on remote AFP share
  180. .AppleDB
  181. .AppleDesktop
  182. Network Trash Folder
  183. Temporary Items
  184. .apdisk
Tip!

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

Comments

Loading...