alessandro trinca tornidor commited on
Commit
664f712
·
1 Parent(s): e0362b5

ci: add missing .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +284 -0
.gitignore ADDED
@@ -0,0 +1,284 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Created by https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
3
+
4
+ ### Linux ###
5
+ *~
6
+
7
+ # temporary files which can be created if a process still has a handle open of a deleted file
8
+ .fuse_hidden*
9
+
10
+ # KDE directory preferences
11
+ .directory
12
+
13
+ # Linux trash folder which might appear on any partition or disk
14
+ .Trash-*
15
+
16
+ # .nfs files are created when an open file is removed but is still being accessed
17
+ .nfs*
18
+
19
+ ### OSX ###
20
+ *.DS_Store
21
+ .AppleDouble
22
+ .LSOverride
23
+
24
+ # Icon must end with two \r
25
+ Icon
26
+
27
+ # Thumbnails
28
+ ._*
29
+
30
+ # Files that might appear in the root of a volume
31
+ .DocumentRevisions-V100
32
+ .fseventsd
33
+ .Spotlight-V100
34
+ .TemporaryItems
35
+ .Trashes
36
+ .VolumeIcon.icns
37
+ .com.apple.timemachine.donotpresent
38
+
39
+ # Directories potentially created on remote AFP share
40
+ .AppleDB
41
+ .AppleDesktop
42
+ Network Trash Folder
43
+ Temporary Items
44
+ .apdisk
45
+
46
+ # CMake
47
+ cmake-build-debug/
48
+
49
+ # Ruby plugin and RubyMine
50
+ /.rakeTasks
51
+
52
+ # Crashlytics plugin (for Android Studio and IntelliJ)
53
+ com_crashlytics_export_strings.xml
54
+ crashlytics.properties
55
+ crashlytics-build.properties
56
+ fabric.properties
57
+
58
+ ### Python ###
59
+ # Byte-compiled / optimized / DLL files
60
+ __pycache__/
61
+ *.py[cod]
62
+ *$py.class
63
+
64
+ # C extensions
65
+ *.so
66
+
67
+ # Distribution / packaging
68
+ .Python
69
+ build/
70
+ develop-eggs/
71
+ dist/
72
+ downloads/
73
+ eggs/
74
+ .eggs/
75
+ lib/
76
+ lib64/
77
+ parts/
78
+ sdist/
79
+ var/
80
+ wheels/
81
+ *.egg-info/
82
+ .installed.cfg
83
+ *.egg
84
+
85
+ # PyInstaller
86
+ # Usually these files are written by a python script from a template
87
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
88
+ *.manifest
89
+ *.spec
90
+
91
+ # Installer logs
92
+ pip-log.txt
93
+ pip-delete-this-directory.txt
94
+
95
+ # Unit test / coverage reports
96
+ htmlcov/
97
+ .tox/
98
+ .coverage
99
+ .coverage.*
100
+ .cache
101
+ .pytest_cache/
102
+ nosetests.xml
103
+ coverage.xml
104
+ *.cover
105
+ .hypothesis/
106
+ */playwright-report/*
107
+ */test-results/*
108
+
109
+ # Translations
110
+ *.mo
111
+ *.pot
112
+
113
+ # Flask stuff:
114
+ instance/
115
+ .webassets-cache
116
+
117
+ # Scrapy stuff:
118
+ .scrapy
119
+
120
+ # Sphinx documentation
121
+ docs/_build/doctrees/*
122
+ docs/_build/html/*
123
+
124
+ # PyBuilder
125
+ target/
126
+
127
+ # Jupyter Notebook
128
+ .ipynb_checkpoints
129
+
130
+ # pyenv
131
+ .python-version
132
+
133
+ # celery beat schedule file
134
+ celerybeat-schedule.*
135
+
136
+ # SageMath parsed files
137
+ *.sage.py
138
+
139
+ # Environments
140
+ .env
141
+ .env*
142
+ .venv
143
+ env/
144
+ venv/
145
+ ENV/
146
+ env.bak/
147
+ venv.bak/
148
+
149
+ # Spyder project settings
150
+ .spyderproject
151
+ .spyproject
152
+
153
+ # Rope project settings
154
+ .ropeproject
155
+
156
+ # mkdocs documentation
157
+ /site
158
+
159
+ # mypy
160
+ .mypy_cache/
161
+
162
+ ### VisualStudioCode ###
163
+ .vscode/*
164
+ !.vscode/settings.json
165
+ !.vscode/tasks.json
166
+ !.vscode/launch.json
167
+ !.vscode/extensions.json
168
+ .history
169
+
170
+ ### Windows ###
171
+ # Windows thumbnail cache files
172
+ Thumbs.db
173
+ ehthumbs.db
174
+ ehthumbs_vista.db
175
+
176
+ # Folder config file
177
+ Desktop.ini
178
+
179
+ # Recycle Bin used on file shares
180
+ $RECYCLE.BIN/
181
+
182
+ # Windows Installer files
183
+ *.cab
184
+ *.msi
185
+ *.msm
186
+ *.msp
187
+
188
+ # Windows shortcuts
189
+ *.lnk
190
+
191
+ # Build folder
192
+
193
+ */build/*
194
+
195
+ # custom
196
+ *.ori
197
+ tmp
198
+ nohup.out
199
+ /tests/events.tar
200
+ function_dump_*.json
201
+ vis_output/*
202
+ data*
203
+ data/*
204
+
205
+ # onnx models
206
+ *.onnx
207
+
208
+ # End of https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
209
+
210
+ ## .idea files
211
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
212
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
213
+
214
+ # User-specific stuff
215
+ .idea/**/workspace.xml
216
+ .idea/**/tasks.xml
217
+ .idea/**/usage.statistics.xml
218
+ .idea/**/dictionaries
219
+ .idea/**/shelf
220
+
221
+ # Generated files
222
+ .idea/**/contentModel.xml
223
+
224
+ # Sensitive or high-churn files
225
+ .idea/**/dataSources/
226
+ .idea/**/dataSources.ids
227
+ .idea/**/dataSources.local.xml
228
+ .idea/**/sqlDataSources.xml
229
+ .idea/**/dynamic.xml
230
+ .idea/**/uiDesigner.xml
231
+ .idea/**/dbnavigator.xml
232
+
233
+ # Gradle
234
+ .idea/**/gradle.xml
235
+ .idea/**/libraries
236
+
237
+ # Gradle and Maven with auto-import
238
+ # When using Gradle or Maven with auto-import, you should exclude module files,
239
+ # since they will be recreated, and may cause churn. Uncomment if using
240
+ # auto-import.
241
+ # .idea/modules.xml
242
+ .idea/*.iml
243
+ # .idea/modules
244
+
245
+ # CMake
246
+ cmake-build-*/
247
+
248
+ # Mongo Explorer plugin
249
+ .idea/**/mongoSettings.xml
250
+
251
+ # File-based project format
252
+ *.iws
253
+
254
+ # IntelliJ
255
+ out/
256
+
257
+ # mpeltonen/sbt-idea plugin
258
+ .idea_modules/
259
+
260
+ # JIRA plugin
261
+ atlassian-ide-plugin.xml
262
+
263
+ # Cursive Clojure plugin
264
+ .idea/replstate.xml
265
+
266
+ # Crashlytics plugin (for Android Studio and IntelliJ)
267
+ com_crashlytics_export_strings.xml
268
+ crashlytics.properties
269
+ crashlytics-build.properties
270
+ fabric.properties
271
+
272
+ # Editor-based Rest Client
273
+ .idea/httpRequests
274
+
275
+ # Android studio 3.1+ serialized cache file
276
+ .idea/caches/build_file_checksums.ser
277
+
278
+ # Sonarlint plugin
279
+ .idea/sonarlint
280
+ /.idea/modules.xml
281
+
282
+ # node_modules
283
+ node_modules
284
+ */node_modules/*/*