1
0

.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. # Created by https://www.gitignore.io/api/node,macos,windows
  2. # Edit at https://www.gitignore.io/?templates=node,macos,windows
  3. ### macOS ###
  4. # General
  5. .DS_Store
  6. .AppleDouble
  7. .LSOverride
  8. # Icon must end with two \r
  9. Icon
  10. # Thumbnails
  11. ._*
  12. # Files that might appear in the root of a volume
  13. .DocumentRevisions-V100
  14. .fseventsd
  15. .Spotlight-V100
  16. .TemporaryItems
  17. .Trashes
  18. .VolumeIcon.icns
  19. .com.apple.timemachine.donotpresent
  20. # Directories potentially created on remote AFP share
  21. .AppleDB
  22. .AppleDesktop
  23. Network Trash Folder
  24. Temporary Items
  25. .apdisk
  26. ### Node ###
  27. # Logs
  28. logs
  29. *.log
  30. npm-debug.log*
  31. yarn-debug.log*
  32. yarn-error.log*
  33. lerna-debug.log*
  34. # Diagnostic reports (https://nodejs.org/api/report.html)
  35. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  36. # Runtime data
  37. pids
  38. *.pid
  39. *.seed
  40. *.pid.lock
  41. # Directory for instrumented libs generated by jscoverage/JSCover
  42. lib-cov
  43. # Coverage directory used by tools like istanbul
  44. coverage
  45. *.lcov
  46. # nyc test coverage
  47. .nyc_output
  48. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  49. .grunt
  50. # Bower dependency directory (https://bower.io/)
  51. bower_components
  52. # node-waf configuration
  53. .lock-wscript
  54. # Compiled binary addons (https://nodejs.org/api/addons.html)
  55. build/Release
  56. # Dependency directories
  57. node_modules/
  58. jspm_packages/
  59. # TypeScript v1 declaration files
  60. typings/
  61. # TypeScript cache
  62. *.tsbuildinfo
  63. # Optional npm cache directory
  64. .npm
  65. # Optional eslint cache
  66. .eslintcache
  67. # Optional REPL history
  68. .node_repl_history
  69. # Output of 'npm pack'
  70. *.tgz
  71. # Yarn Integrity file
  72. .yarn-integrity
  73. # dotenv environment variables file
  74. .env
  75. .env.test
  76. # parcel-bundler cache (https://parceljs.org/)
  77. .cache
  78. # next.js build output
  79. .next
  80. # nuxt.js build output
  81. .nuxt
  82. # rollup.js default build output
  83. dist/
  84. # Uncomment the public line if your project uses Gatsby
  85. # https://nextjs.org/blog/next-9-1#public-directory-support
  86. # https://create-react-app.dev/docs/using-the-public-folder/#docsNav
  87. # public
  88. # Storybook build outputs
  89. .out
  90. .storybook-out
  91. # vuepress build output
  92. .vuepress/dist
  93. # Serverless directories
  94. .serverless/
  95. # FuseBox cache
  96. .fusebox/
  97. # DynamoDB Local files
  98. .dynamodb/
  99. # Temporary folders
  100. tmp/
  101. temp/
  102. ### Windows ###
  103. # Windows thumbnail cache files
  104. Thumbs.db
  105. Thumbs.db:encryptable
  106. ehthumbs.db
  107. ehthumbs_vista.db
  108. # Dump file
  109. *.stackdump
  110. # Folder config file
  111. [Dd]esktop.ini
  112. # Recycle Bin used on file shares
  113. $RECYCLE.BIN/
  114. # Windows Installer files
  115. *.cab
  116. *.msi
  117. *.msix
  118. *.msm
  119. *.msp
  120. # Windows shortcuts
  121. *.lnk
  122. # End of https://www.gitignore.io/api/node,macos,windows
  123. releases/