.gitignore 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #
  2. # Copyright 2018-2022 Elyra Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # Byte-compiled / optimized / DLL files
  17. __pycache__/
  18. *.py[cod]
  19. # C extensions
  20. *.so
  21. # Distribution / packaging
  22. .Python
  23. .pytest_cache
  24. env/
  25. build/
  26. develop-eggs/
  27. dist/
  28. downloads/
  29. eggs/
  30. .eggs/
  31. lib/
  32. lib64/
  33. parts/
  34. sdist/
  35. var/
  36. *.egg-info/
  37. .installed.cfg
  38. *.egg
  39. tsconfig.tsbuildinfo
  40. package-lock.json
  41. # PyInstaller
  42. # Usually these files are written by a python script from a template
  43. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  44. *.manifest
  45. *.spec
  46. # Installer logs
  47. pip-log.txt
  48. pip-delete-this-directory.txt
  49. # Unit test / coverage reports
  50. htmlcov/
  51. .tox/
  52. .coverage
  53. .coverage.*
  54. .cache
  55. nosetests.xml
  56. coverage.xml
  57. *,cover
  58. # Translations
  59. *.mo
  60. *.pot
  61. # Django stuff:
  62. *.log
  63. # Sphinx documentation
  64. docs/_build/
  65. # PyBuilder
  66. target/
  67. .DS_Store
  68. .ipynb_checkpoints/
  69. # PyCharm
  70. .idea/
  71. *.iml
  72. # Build-related
  73. .image-*
  74. tsconfig.tsbuildinfo
  75. node_modules
  76. .vscode/