.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. *.suo
  2. *.user
  3. .DS_Store
  4. # Logs
  5. logs
  6. *.log
  7. # Runtime data
  8. pids
  9. *.pid
  10. *.seed
  11. # Dependency directory
  12. # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
  13. node_modules
  14. npm-debug.log
  15. # Built/transpiled fun
  16. docs/
  17. lib/
  18. *.map
  19. examples/*/build
  20. test/build
  21. test/coverage
  22. lib/
  23. example/build
  24. example/untitled*
  25. example/Untitled*
  26. example/*.png
  27. example/*.gif
  28. coverage
  29. lib
  30. build
  31. docs
  32. jupyterlab/_version.py
  33. .ipynb_checkpoints
  34. Unititled*
  35. untitled*
  36. # Byte-compiled / optimized / DLL files
  37. __pycache__/
  38. *.py[cod]
  39. *$py.class
  40. # C extensions
  41. *.so
  42. # Distribution / packaging
  43. .Python
  44. env/
  45. build/
  46. develop-eggs/
  47. dist/
  48. downloads/
  49. eggs/
  50. .eggs/
  51. lib/
  52. lib64/
  53. parts/
  54. sdist/
  55. var/
  56. *.egg-info/
  57. .installed.cfg
  58. *.egg
  59. # PyInstaller
  60. # Usually these files are written by a python script from a template
  61. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  62. *.manifest
  63. *.spec
  64. # Installer logs
  65. pip-log.txt
  66. pip-delete-this-directory.txt
  67. # Unit test / coverage reports
  68. htmlcov/
  69. .tox/
  70. .coverage
  71. .coverage.*
  72. .cache
  73. nosetests.xml
  74. coverage.xml
  75. *,cover
  76. .hypothesis/
  77. # Translations
  78. *.mo
  79. *.pot
  80. # Django stuff:
  81. *.log
  82. local_settings.py
  83. # Flask stuff:
  84. instance/
  85. .webassets-cache
  86. # Scrapy stuff:
  87. .scrapy
  88. # Sphinx documentation
  89. docs/_build/
  90. # PyBuilder
  91. target/
  92. # IPython Notebook
  93. .ipynb_checkpoints
  94. # pyenv
  95. .python-version
  96. # celery beat schedule file
  97. celerybeat-schedule
  98. # dotenv
  99. .env
  100. # virtualenv
  101. venv/
  102. ENV/
  103. # Spyder project settings
  104. .spyderproject
  105. # Rope project settings
  106. .ropeproject