.gitignore 842 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # project files
  2. coverage/
  3. dev_mode/listings
  4. dev_mode/schemas
  5. dev_mode/static
  6. dev_mode/themes
  7. dev_mode/workspaces
  8. dev_mode/stats.json
  9. docs/_build
  10. docs/api
  11. **/docs/source/_build
  12. examples/app/build
  13. examples/app/themes
  14. examples/app/schemas
  15. junit.xml
  16. jupyterlab/geckodriver
  17. jupyterlab/static
  18. jupyterlab/schemas
  19. jupyterlab/themes
  20. jupyterlab/imports.css
  21. packages/nbconvert-css/style/
  22. packages/services/examples/node/config.json
  23. packages/theme-*/static
  24. tests/**/coverage
  25. tests/**/.cache-loader
  26. # javascript/typescript
  27. lib
  28. node_modules
  29. *.tsbuildinfo
  30. lerna-debug.log
  31. yarn-error.log
  32. storybook-static
  33. # python
  34. .cache
  35. *.py[co]
  36. .pytest_cache
  37. __pycache__
  38. *.egg-info
  39. .ipynb_checkpoints
  40. build
  41. dist
  42. MANIFEST
  43. # misc
  44. *~
  45. *.bak
  46. *.map
  47. *.swp
  48. .DS_Store
  49. .log/
  50. \#*#
  51. .#*
  52. # jetbrains IDE stuff
  53. *.iml
  54. .idea/
  55. # ms IDE stuff
  56. *.code-workspace
  57. .history
  58. .vscode