.gitignore 573 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Node.js dependencies
  2. node_modules/
  3. npm-debug.log
  4. yarn-debug.log
  5. yarn-error.log
  6. package-lock.json
  7. yarn.lock
  8. # Build and distribution folders
  9. dist/
  10. build/
  11. web-ext-artifacts/
  12. *.zip
  13. *.xpi
  14. # Environment variables
  15. .env
  16. .env.local
  17. .env.development.local
  18. .env.test.local
  19. .env.production.local
  20. # IDE and editor folders
  21. .idea/
  22. .vscode/
  23. *.swp
  24. *.swo
  25. .DS_Store
  26. Thumbs.db
  27. # Coverage reports
  28. coverage/
  29. # Logs
  30. logs
  31. *.log
  32. npm-debug.log*
  33. yarn-debug.log*
  34. yarn-error.log*
  35. # Optional eslint cache
  36. .eslintcache
  37. # Optional stylelint cache
  38. .stylelintcache
  39. # Temporary files
  40. *.tmp
  41. *.temp