.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. # e2e results
  2. test-results/
  3. doc_build/
  4. # Logs
  5. *.log
  6. npm-debug.log*
  7. yarn-debug.log*
  8. yarn-error.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. *.pid
  14. *.seed
  15. *.pid.lock
  16. # Directory for instrumented libs generated by jscoverage/JSCover
  17. lib-cov/
  18. # Coverage directory used by tools like istanbul
  19. coverage/
  20. # nyc test coverage
  21. .nyc_output/
  22. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  23. .grunt/
  24. # Bower dependency directory (https://bower.io/)
  25. bower_components/
  26. # node-waf configuration
  27. .lock-wscript/
  28. # Compiled binary addons (https://nodejs.org/api/addons.html)
  29. build/Release/
  30. # Dependency directories
  31. node_modules/
  32. jspm_packages/
  33. # TypeScript cache
  34. *.tsbuildinfo
  35. # Optional npm cache directory
  36. .npm/
  37. # Optional eslint cache
  38. .eslintcache/
  39. # Optional REPL history
  40. .node_repl_history
  41. # Output of 'npm pack'
  42. *.tgz
  43. # Yarn Integrity file
  44. .yarn-integrity
  45. # dotenv environment variables file
  46. .env
  47. .env.development.local
  48. .env.test.local
  49. .env.production.local
  50. .env.local
  51. # next.js build output
  52. .next/
  53. # Docusaurus cache and generated files
  54. .docusaurus/
  55. # Serverless directories
  56. .serverless/
  57. # FuseBox cache
  58. .fusebox/
  59. # DynamoDB Local files
  60. .dynamodb/
  61. # yarn v2
  62. .yarn/cache/
  63. .yarn/unplugged/
  64. .yarn/build-state.yml
  65. .yarn/install-state.gz
  66. .pnp.*
  67. # OS X temporary files
  68. .DS_Store
  69. # IntelliJ IDEA project files; if you want to commit IntelliJ settings, this recipe may be helpful:
  70. # https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  71. .idea/
  72. *.iml
  73. # Visual Studio Code
  74. !.vscode/settings.json
  75. !.vscode/tasks.json
  76. !.vscode/launch.json
  77. # Rush temporary files
  78. common/deploy/
  79. common/temp/
  80. common/autoinstallers/*/.npmrc
  81. **/.rush/temp/
  82. *.lock
  83. # Common toolchain intermediate files
  84. temp/
  85. lib/
  86. lib-amd/
  87. lib-es6/
  88. lib-esnext/
  89. lib-commonjs/
  90. lib-shim/
  91. dist/
  92. dist-storybook/
  93. *.tsbuildinfo
  94. # Heft temporary files
  95. .cache/
  96. .heft/
  97. # rush standard files
  98. .eslintcache
  99. # eslint cache for v9
  100. .lintcache/