.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .DS_Store
  2. # Logs
  3. logs
  4. *.log
  5. npm-debug.log*
  6. yarn-debug.log*
  7. yarn-error.log*
  8. lerna-debug.log*
  9. .pnpm-debug.log*
  10. # Diagnostic reports (https://nodejs.org/api/report.html)
  11. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  12. # Runtime data
  13. pids
  14. *.pid
  15. *.seed
  16. *.pid.lock
  17. # Directory for instrumented libs generated by jscoverage/JSCover
  18. lib-cov
  19. # Coverage directory used by tools like istanbul
  20. coverage
  21. *.lcov
  22. # nyc test coverage
  23. .nyc_output
  24. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  25. .grunt
  26. # Bower dependency directory (https://bower.io/)
  27. bower_components
  28. # node-waf configuration
  29. .lock-wscript
  30. # Compiled binary addons (https://nodejs.org/api/addons.html)
  31. build/Release
  32. # Dependency directories
  33. node_modules/
  34. jspm_packages/
  35. # Snowpack dependency directory (https://snowpack.dev/)
  36. web_modules/
  37. # TypeScript cache
  38. *.tsbuildinfo
  39. # Optional npm cache directory
  40. .npm
  41. # Optional eslint cache
  42. .eslintcache
  43. # Microbundle cache
  44. .rpt2_cache/
  45. .rts2_cache_cjs/
  46. .rts2_cache_es/
  47. .rts2_cache_umd/
  48. # Optional REPL history
  49. .node_repl_history
  50. # Output of 'npm pack'
  51. *.tgz
  52. # Yarn Integrity file
  53. .yarn-integrity
  54. # dotenv environment variables file
  55. .env
  56. .env.test
  57. .env.production
  58. # parcel-bundler cache (https://parceljs.org/)
  59. .cache
  60. .parcel-cache
  61. # Next.js build output
  62. .next
  63. out
  64. # Nuxt.js build / generate output
  65. .nuxt
  66. dist
  67. # Gatsby files
  68. .cache/
  69. # Comment in the public line in if your project uses Gatsby and not Next.js
  70. # https://nextjs.org/blog/next-9-1#public-directory-support
  71. # public
  72. # vuepress build output
  73. .vuepress/dist
  74. # Serverless directories
  75. .serverless/
  76. # FuseBox cache
  77. .fusebox/
  78. # DynamoDB Local files
  79. .dynamodb/
  80. # TernJS port file
  81. .tern-port
  82. # Stores VSCode versions used for testing VSCode extensions
  83. .vscode-test
  84. # yarn v2
  85. .yarn/cache
  86. .yarn/unplugged
  87. .yarn/build-state.yml
  88. .yarn/install-state.gz
  89. .pnp.*
  90. *~