dolfim-ibm commited on
Commit
e2d718e
·
0 Parent(s):

add gitignore

Browse files

Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>

Files changed (2) hide show
  1. .gitattributes +2 -0
  2. .gitignore +440 -0
.gitattributes ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *.png filter=lfs diff=lfs merge=lfs -text
2
+ *.pdf filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,440 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model_artifacts/
2
+ scratch/
3
+
4
+ # Created by https://www.toptal.com/developers/gitignore/api/python,macos,virtualenv,pycharm,visualstudiocode,emacs,vim,jupyternotebooks
5
+ # Edit at https://www.toptal.com/developers/gitignore?templates=python,macos,virtualenv,pycharm,visualstudiocode,emacs,vim,jupyternotebooks
6
+
7
+ ### Emacs ###
8
+ # -*- mode: gitignore; -*-
9
+ *~
10
+ \#*\#
11
+ /.emacs.desktop
12
+ /.emacs.desktop.lock
13
+ *.elc
14
+ auto-save-list
15
+ tramp
16
+ .\#*
17
+
18
+ # Org-mode
19
+ .org-id-locations
20
+ *_archive
21
+
22
+ # flymake-mode
23
+ *_flymake.*
24
+
25
+ # eshell files
26
+ /eshell/history
27
+ /eshell/lastdir
28
+
29
+ # elpa packages
30
+ /elpa/
31
+
32
+ # reftex files
33
+ *.rel
34
+
35
+ # AUCTeX auto folder
36
+ /auto/
37
+
38
+ # cask packages
39
+ .cask/
40
+ dist/
41
+
42
+ # Flycheck
43
+ flycheck_*.el
44
+
45
+ # server auth directory
46
+ /server/
47
+
48
+ # projectiles files
49
+ .projectile
50
+
51
+ # directory configuration
52
+ .dir-locals.el
53
+
54
+ # network security
55
+ /network-security.data
56
+
57
+
58
+ ### JupyterNotebooks ###
59
+ # gitignore template for Jupyter Notebooks
60
+ # website: http://jupyter.org/
61
+
62
+ .ipynb_checkpoints
63
+ */.ipynb_checkpoints/*
64
+
65
+ # IPython
66
+ profile_default/
67
+ ipython_config.py
68
+
69
+ # Remove previous ipynb_checkpoints
70
+ # git rm -r .ipynb_checkpoints/
71
+
72
+ ### macOS ###
73
+ # General
74
+ .DS_Store
75
+ .AppleDouble
76
+ .LSOverride
77
+
78
+ # Icon must end with two \r
79
+ Icon
80
+
81
+
82
+ # Thumbnails
83
+ ._*
84
+
85
+ # Files that might appear in the root of a volume
86
+ .DocumentRevisions-V100
87
+ .fseventsd
88
+ .Spotlight-V100
89
+ .TemporaryItems
90
+ .Trashes
91
+ .VolumeIcon.icns
92
+ .com.apple.timemachine.donotpresent
93
+
94
+ # Directories potentially created on remote AFP share
95
+ .AppleDB
96
+ .AppleDesktop
97
+ Network Trash Folder
98
+ Temporary Items
99
+ .apdisk
100
+
101
+ ### macOS Patch ###
102
+ # iCloud generated files
103
+ *.icloud
104
+
105
+ ### PyCharm ###
106
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
107
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
108
+
109
+ # User-specific stuff
110
+ .idea/**/workspace.xml
111
+ .idea/**/tasks.xml
112
+ .idea/**/usage.statistics.xml
113
+ .idea/**/dictionaries
114
+ .idea/**/shelf
115
+
116
+ # AWS User-specific
117
+ .idea/**/aws.xml
118
+
119
+ # Generated files
120
+ .idea/**/contentModel.xml
121
+
122
+ # Sensitive or high-churn files
123
+ .idea/**/dataSources/
124
+ .idea/**/dataSources.ids
125
+ .idea/**/dataSources.local.xml
126
+ .idea/**/sqlDataSources.xml
127
+ .idea/**/dynamic.xml
128
+ .idea/**/uiDesigner.xml
129
+ .idea/**/dbnavigator.xml
130
+
131
+ # Gradle
132
+ .idea/**/gradle.xml
133
+ .idea/**/libraries
134
+
135
+ # Gradle and Maven with auto-import
136
+ # When using Gradle or Maven with auto-import, you should exclude module files,
137
+ # since they will be recreated, and may cause churn. Uncomment if using
138
+ # auto-import.
139
+ # .idea/artifacts
140
+ # .idea/compiler.xml
141
+ # .idea/jarRepositories.xml
142
+ # .idea/modules.xml
143
+ # .idea/*.iml
144
+ # .idea/modules
145
+ # *.iml
146
+ # *.ipr
147
+
148
+ # CMake
149
+ cmake-build-*/
150
+
151
+ # Mongo Explorer plugin
152
+ .idea/**/mongoSettings.xml
153
+
154
+ # File-based project format
155
+ *.iws
156
+
157
+ # IntelliJ
158
+ out/
159
+
160
+ # mpeltonen/sbt-idea plugin
161
+ .idea_modules/
162
+
163
+ # JIRA plugin
164
+ atlassian-ide-plugin.xml
165
+
166
+ # Cursive Clojure plugin
167
+ .idea/replstate.xml
168
+
169
+ # SonarLint plugin
170
+ .idea/sonarlint/
171
+
172
+ # Crashlytics plugin (for Android Studio and IntelliJ)
173
+ com_crashlytics_export_strings.xml
174
+ crashlytics.properties
175
+ crashlytics-build.properties
176
+ fabric.properties
177
+
178
+ # Editor-based Rest Client
179
+ .idea/httpRequests
180
+
181
+ # Android studio 3.1+ serialized cache file
182
+ .idea/caches/build_file_checksums.ser
183
+
184
+ ### PyCharm Patch ###
185
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
186
+
187
+ # *.iml
188
+ # modules.xml
189
+ # .idea/misc.xml
190
+ # *.ipr
191
+
192
+ # Sonarlint plugin
193
+ # https://plugins.jetbrains.com/plugin/7973-sonarlint
194
+ .idea/**/sonarlint/
195
+
196
+ # SonarQube Plugin
197
+ # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
198
+ .idea/**/sonarIssues.xml
199
+
200
+ # Markdown Navigator plugin
201
+ # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
202
+ .idea/**/markdown-navigator.xml
203
+ .idea/**/markdown-navigator-enh.xml
204
+ .idea/**/markdown-navigator/
205
+
206
+ # Cache file creation bug
207
+ # See https://youtrack.jetbrains.com/issue/JBR-2257
208
+ .idea/$CACHE_FILE$
209
+
210
+ # CodeStream plugin
211
+ # https://plugins.jetbrains.com/plugin/12206-codestream
212
+ .idea/codestream.xml
213
+
214
+ # Azure Toolkit for IntelliJ plugin
215
+ # https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
216
+ .idea/**/azureSettings.xml
217
+
218
+ ### Python ###
219
+ # Byte-compiled / optimized / DLL files
220
+ __pycache__/
221
+ *.py[cod]
222
+ *$py.class
223
+
224
+ # C extensions
225
+ *.so
226
+
227
+ # Distribution / packaging
228
+ .Python
229
+ build/
230
+ develop-eggs/
231
+ downloads/
232
+ eggs/
233
+ .eggs/
234
+ lib/
235
+ lib64/
236
+ parts/
237
+ sdist/
238
+ var/
239
+ wheels/
240
+ share/python-wheels/
241
+ *.egg-info/
242
+ .installed.cfg
243
+ *.egg
244
+ MANIFEST
245
+
246
+ # PyInstaller
247
+ # Usually these files are written by a python script from a template
248
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
249
+ *.manifest
250
+ *.spec
251
+
252
+ # Installer logs
253
+ pip-log.txt
254
+ pip-delete-this-directory.txt
255
+
256
+ # Unit test / coverage reports
257
+ htmlcov/
258
+ .tox/
259
+ .nox/
260
+ .coverage
261
+ .coverage.*
262
+ .cache
263
+ nosetests.xml
264
+ coverage.xml
265
+ *.cover
266
+ *.py,cover
267
+ .hypothesis/
268
+ .pytest_cache/
269
+ cover/
270
+
271
+ # Translations
272
+ *.mo
273
+ *.pot
274
+
275
+ # Django stuff:
276
+ *.log
277
+ local_settings.py
278
+ db.sqlite3
279
+ db.sqlite3-journal
280
+
281
+ # Flask stuff:
282
+ instance/
283
+ .webassets-cache
284
+
285
+ # Scrapy stuff:
286
+ .scrapy
287
+
288
+ # Sphinx documentation
289
+ docs/_build/
290
+
291
+ # PyBuilder
292
+ .pybuilder/
293
+ target/
294
+
295
+ # Jupyter Notebook
296
+
297
+ # IPython
298
+
299
+ # pyenv
300
+ # For a library or package, you might want to ignore these files since the code is
301
+ # intended to run in multiple environments; otherwise, check them in:
302
+ # .python-version
303
+
304
+ # pipenv
305
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
306
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
307
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
308
+ # install all needed dependencies.
309
+ #Pipfile.lock
310
+
311
+ # poetry
312
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
313
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
314
+ # commonly ignored for libraries.
315
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
316
+ #poetry.lock
317
+
318
+ # pdm
319
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
320
+ #pdm.lock
321
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
322
+ # in version control.
323
+ # https://pdm.fming.dev/#use-with-ide
324
+ .pdm.toml
325
+
326
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
327
+ __pypackages__/
328
+
329
+ # Celery stuff
330
+ celerybeat-schedule
331
+ celerybeat.pid
332
+
333
+ # SageMath parsed files
334
+ *.sage.py
335
+
336
+ # Environments
337
+ .env
338
+ .venv
339
+ env/
340
+ venv/
341
+ ENV/
342
+ env.bak/
343
+ venv.bak/
344
+
345
+ # Spyder project settings
346
+ .spyderproject
347
+ .spyproject
348
+
349
+ # Rope project settings
350
+ .ropeproject
351
+
352
+ # mkdocs documentation
353
+ /site
354
+
355
+ # mypy
356
+ .mypy_cache/
357
+ .dmypy.json
358
+ dmypy.json
359
+
360
+ # Pyre type checker
361
+ .pyre/
362
+
363
+ # pytype static type analyzer
364
+ .pytype/
365
+
366
+ # Cython debug symbols
367
+ cython_debug/
368
+
369
+ # PyCharm
370
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
371
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
372
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
373
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
374
+ .idea/
375
+
376
+ ### Python Patch ###
377
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
378
+ poetry.toml
379
+
380
+ # ruff
381
+ .ruff_cache/
382
+
383
+ ### Vim ###
384
+ # Swap
385
+ [._]*.s[a-v][a-z]
386
+ !*.svg # comment out if you don't need vector files
387
+ [._]*.sw[a-p]
388
+ [._]s[a-rt-v][a-z]
389
+ [._]ss[a-gi-z]
390
+ [._]sw[a-p]
391
+
392
+ # Session
393
+ Session.vim
394
+ Sessionx.vim
395
+
396
+ # Temporary
397
+ .netrwhist
398
+ # Auto-generated tag files
399
+ tags
400
+ # Persistent undo
401
+ [._]*.un~
402
+
403
+
404
+ ### Visual Studio Code ###
405
+ .vscode/
406
+
407
+ ### VirtualEnv ###
408
+ # Virtualenv
409
+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
410
+ [Bb]in
411
+ [Ii]nclude
412
+ [Ll]ib
413
+ [Ll]ib64
414
+ [Ll]ocal
415
+ pyvenv.cfg
416
+ pip-selfcheck.json
417
+
418
+ ### VisualStudioCode ###
419
+ .vscode/*
420
+ !.vscode/settings.json
421
+ !.vscode/tasks.json
422
+ !.vscode/launch.json
423
+ !.vscode/extensions.json
424
+ !.vscode/*.code-snippets
425
+
426
+ # Local History for Visual Studio Code
427
+ .history/
428
+
429
+ # Built Visual Studio Code Extensions
430
+ *.vsix
431
+
432
+ ### VisualStudioCode Patch ###
433
+ # Ignore all local history of files
434
+ .history
435
+ .ionide
436
+
437
+
438
+ # Docs
439
+ # docs/**/*.png
440
+ # docs/**/*.svg