.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. *.bundle.*
  2. lib/
  3. node_modules/
  4. .eslintcache
  5. .stylelintcache
  6. *.egg-info/
  7. .ipynb_checkpoints
  8. *.tsbuildinfo
  9. yili-dag/labextension
  10. # Integration tests
  11. ui-tests/test-results/
  12. ui-tests/playwright-report/
  13. # Created by https://www.gitignore.io/api/python
  14. # Edit at https://www.gitignore.io/?templates=python
  15. ### Python ###
  16. # Byte-compiled / optimized / DLL files
  17. __pycache__/
  18. *.py[cod]
  19. *$py.class
  20. # C extensions
  21. *.so
  22. # Distribution / packaging
  23. .Python
  24. build/
  25. develop-eggs/
  26. dist/
  27. downloads/
  28. eggs/
  29. .eggs/
  30. lib/
  31. lib64/
  32. parts/
  33. sdist/
  34. var/
  35. wheels/
  36. pip-wheel-metadata/
  37. share/python-wheels/
  38. .installed.cfg
  39. *.egg
  40. MANIFEST
  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. .nox/
  53. .coverage
  54. .coverage.*
  55. .cache
  56. nosetests.xml
  57. coverage.xml
  58. *.cover
  59. .hypothesis/
  60. .pytest_cache/
  61. # Translations
  62. *.mo
  63. *.pot
  64. # Scrapy stuff:
  65. .scrapy
  66. # Sphinx documentation
  67. docs/_build/
  68. # PyBuilder
  69. target/
  70. # pyenv
  71. .python-version
  72. # celery beat schedule file
  73. celerybeat-schedule
  74. # SageMath parsed files
  75. *.sage.py
  76. # Spyder project settings
  77. .spyderproject
  78. .spyproject
  79. # Rope project settings
  80. .ropeproject
  81. # Mr Developer
  82. .mr.developer.cfg
  83. .project
  84. .pydevproject
  85. # mkdocs documentation
  86. /site
  87. # mypy
  88. .mypy_cache/
  89. .dmypy.json
  90. dmypy.json
  91. # Pyre type checker
  92. .pyre/
  93. # End of https://www.gitignore.io/api/python
  94. # OSX files
  95. .DS_Store