.gitignore 412 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .vscode/
  2. .venv/
  3. *.pyc
  4. **/__pycache__/
  5. dist/
  6. node_modules/
  7. .eslintcache
  8. ggsh.tgz
  9. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  10. # dependencies
  11. /node_modules
  12. /.pnp
  13. .pnp.js
  14. # testing
  15. coverage/
  16. # production
  17. /build
  18. # misc
  19. .DS_Store
  20. .env.local
  21. .env.development.local
  22. .env.test.local
  23. .env.production.local
  24. npm-debug.log*
  25. yarn-debug.log*
  26. yarn-error.log*
  27. .env.development