1
0

.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. # Created by https://www.gitignore.io/api/node,macos
  2. # Edit at https://www.gitignore.io/?templates=node,macos
  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.test
  75. # parcel-bundler cache (https://parceljs.org/)
  76. .cache
  77. # next.js build output
  78. .next
  79. # nuxt.js build output
  80. .nuxt
  81. # rollup.js default build output
  82. dist/
  83. # Uncomment the public line if your project uses Gatsby
  84. # https://nextjs.org/blog/next-9-1#public-directory-support
  85. # https://create-react-app.dev/docs/using-the-public-folder/#docsNav
  86. # public
  87. # Storybook build outputs
  88. .out
  89. .storybook-out
  90. # vuepress build output
  91. .vuepress/dist
  92. # Serverless directories
  93. .serverless/
  94. # FuseBox cache
  95. .fusebox/
  96. # DynamoDB Local files
  97. .dynamodb/
  98. # Temporary folders
  99. tmp/
  100. temp/
  101. # End of https://www.gitignore.io/api/node,macos