.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # Logs
  2. logs
  3. *.log
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. lerna-debug.log*
  8. # Diagnostic reports (https://nodejs.org/api/report.html)
  9. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  10. # Editor
  11. .vscode
  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. # TypeScript v1 declaration files
  36. typings/
  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. # parcel-bundler cache (https://parceljs.org/)
  58. .cache
  59. # Next.js build output
  60. .next
  61. # Nuxt.js build / generate output
  62. .nuxt
  63. dist
  64. # Gatsby files
  65. .cache/
  66. # Comment in the public line in if your project uses Gatsby and *not* Next.js
  67. # https://nextjs.org/blog/next-9-1#public-directory-support
  68. # public
  69. # vuepress build output
  70. .vuepress/dist
  71. # Serverless directories
  72. .serverless/
  73. # FuseBox cache
  74. .fusebox/
  75. # DynamoDB Local files
  76. .dynamodb/
  77. # TernJS port file
  78. .tern-port