.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. # Created by https://www.gitignore.io/api/node,macos,windows
  2. ### macOS ###
  3. *.DS_Store
  4. .AppleDouble
  5. .LSOverride
  6. # Icon must end with two \r
  7. Icon
  8. # Thumbnails
  9. ._*
  10. # Files that might appear in the root of a volume
  11. .DocumentRevisions-V100
  12. .fseventsd
  13. .Spotlight-V100
  14. .TemporaryItems
  15. .Trashes
  16. .VolumeIcon.icns
  17. .com.apple.timemachine.donotpresent
  18. # Directories potentially created on remote AFP share
  19. .AppleDB
  20. .AppleDesktop
  21. Network Trash Folder
  22. Temporary Items
  23. .apdisk
  24. ### Node ###
  25. # Logs
  26. logs
  27. *.log
  28. npm-debug.log*
  29. yarn-debug.log*
  30. yarn-error.log*
  31. # Runtime data
  32. pids
  33. *.pid
  34. *.seed
  35. *.pid.lock
  36. # Directory for instrumented libs generated by jscoverage/JSCover
  37. lib-cov
  38. # Coverage directory used by tools like istanbul
  39. coverage
  40. # nyc test coverage
  41. .nyc_output
  42. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  43. .grunt
  44. # Bower dependency directory (https://bower.io/)
  45. bower_components
  46. # node-waf configuration
  47. .lock-wscript
  48. # Compiled binary addons (http://nodejs.org/api/addons.html)
  49. build/Release
  50. # Dependency directories
  51. node_modules/
  52. jspm_packages/
  53. # Typescript v1 declaration files
  54. typings/
  55. # Optional npm cache directory
  56. .npm
  57. # Optional eslint cache
  58. .eslintcache
  59. # Optional REPL history
  60. .node_repl_history
  61. # Output of 'npm pack'
  62. *.tgz
  63. # Yarn Integrity file
  64. .yarn-integrity
  65. # dotenv environment variables file
  66. .env
  67. ### Windows ###
  68. # Windows thumbnail cache files
  69. Thumbs.db
  70. ehthumbs.db
  71. ehthumbs_vista.db
  72. # Folder config file
  73. Desktop.ini
  74. # Recycle Bin used on file shares
  75. $RECYCLE.BIN/
  76. # Windows Installer files
  77. *.cab
  78. *.msi
  79. *.msm
  80. *.msp
  81. # Windows shortcuts
  82. *.lnk
  83. # End of https://www.gitignore.io/api/node,macos,windows