.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # Node modules
  2. node_modules/
  3. # Build output
  4. dist/
  5. build/
  6. # Electron build cache
  7. .electron-builder/
  8. # macOS
  9. .DS_Store
  10. .AppleDouble
  11. .LSOverride
  12. # Thumbnails
  13. ._*
  14. # Files that might appear in the root of a volume
  15. .DocumentRevisions-V100
  16. .fseventsd
  17. .Spotlight-V100
  18. .TemporaryItems
  19. .Trashes
  20. .VolumeIcon.icns
  21. .com.apple.timemachine.donotpresent
  22. # Directories potentially created on remote AFP share
  23. .AppleDB
  24. .AppleDesktop
  25. Network Trash Folder
  26. Temporary Items
  27. .apdisk
  28. # Windows
  29. Thumbs.db
  30. ehthumbs.db
  31. Desktop.ini
  32. $RECYCLE.BIN/
  33. # Linux
  34. *~
  35. .fuse_hidden*
  36. .directory
  37. .Trash-*
  38. # IDE
  39. .vscode/
  40. .idea/
  41. *.swp
  42. *.swo
  43. *~
  44. .project
  45. .classpath
  46. .settings/
  47. *.sublime-project
  48. *.sublime-workspace
  49. # Logs
  50. logs/
  51. *.log
  52. npm-debug.log*
  53. yarn-debug.log*
  54. yarn-error.log*
  55. # Environment variables
  56. .env
  57. .env.local
  58. .env.*.local
  59. # Test coverage
  60. coverage/
  61. .nyc_output/
  62. # Vitest
  63. .vite/
  64. node_modules/.vite/
  65. # Temporary files
  66. tmp/
  67. temp/
  68. *.tmp
  69. # Cookie files (may contain sensitive data)
  70. *.txt
  71. !binaries/README.md
  72. # Binary backups
  73. binaries/*.old
  74. binaries/*.backup
  75. # App-specific
  76. downloads/
  77. *.asar.unpacked