Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

.gitignore 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. # dependencies
  3. /node_modules
  4. /.pnp
  5. .pnp.js
  6. # testing
  7. /coverage
  8. # production
  9. /build
  10. # misc
  11. .DS_Store
  12. .env.local
  13. .env.development.local
  14. .env.test.local
  15. .env.production.local
  16. npm-debug.log*
  17. yarn-debug.log*
  18. yarn-error.log*
  19. # ---> Node
  20. # Logs
  21. logs
  22. *.log
  23. npm-debug.log*
  24. yarn-debug.log*
  25. yarn-error.log*
  26. # Runtime data
  27. pids
  28. *.pid
  29. *.seed
  30. *.pid.lock
  31. # Directory for instrumented libs generated by jscoverage/JSCover
  32. lib-cov
  33. # Coverage directory used by tools like istanbul
  34. coverage
  35. # nyc test coverage
  36. .nyc_output
  37. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  38. .grunt
  39. # Bower dependency directory (https://bower.io/)
  40. bower_components
  41. # node-waf configuration
  42. .lock-wscript
  43. # Compiled binary addons (https://nodejs.org/api/addons.html)
  44. build/Release
  45. # Dependency directories
  46. node_modules/
  47. jspm_packages/
  48. # TypeScript v1 declaration files
  49. typings/
  50. # Optional npm cache directory
  51. .npm
  52. # Optional eslint cache
  53. .eslintcache
  54. # Optional REPL history
  55. .node_repl_history
  56. # Output of 'npm pack'
  57. *.tgz
  58. # Yarn Integrity file
  59. .yarn-integrity
  60. # dotenv environment variables file
  61. .env
  62. # parcel-bundler cache (https://parceljs.org/)
  63. .cache
  64. # next.js build output
  65. .next
  66. # nuxt.js build output
  67. .nuxt
  68. # vuepress build output
  69. .vuepress/dist
  70. # Serverless directories
  71. .serverless
  72. # FuseBox cache
  73. .fusebox/