.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. .tpl-temp
  2. server/log/
  3. server/view/
  4. # expo
  5. .expo/
  6. # json
  7. static/changeLog.json
  8. static/designToken.json
  9. # dependencies
  10. /node_modules
  11. packages/**/node_modules
  12. # output
  13. .build_temp
  14. output
  15. dist
  16. build
  17. _site
  18. packages/**/lib
  19. packages/semi-theme-default/css/semi.css
  20. packages/semi-theme-default/semi.scss
  21. public
  22. storybook-static/
  23. *.zip
  24. cypress/videos/
  25. cypress/screenshots/
  26. # misc
  27. .env.local
  28. .env.development.local
  29. .env.test.local
  30. .env.production.local
  31. ### Bower ###
  32. bower_components
  33. .bower-cache
  34. .bower-registry
  35. .bower-tmp
  36. ### Git ###
  37. *.orig
  38. ### Linux ###
  39. *~
  40. # Linux trash folder which might appear on any partition or disk
  41. .Trash-*
  42. # .nfs files are created when an open file is removed but is still being accessed
  43. .nfs*
  44. ### macOS ###
  45. # General
  46. .DS_Store
  47. .AppleDouble
  48. .LSOverride
  49. ._*
  50. # Files that might appear in the root of a volume
  51. .DocumentRevisions-V100
  52. .fseventsd
  53. .Spotlight-V100
  54. .TemporaryItems
  55. .Trashes
  56. .VolumeIcon.icns
  57. .com.apple.timemachine.donotpresent
  58. # Directories potentially created on remote AFP share
  59. .AppleDB
  60. .AppleDesktop
  61. Network Trash Folder
  62. Temporary Items
  63. .apdisk
  64. ### Node ###
  65. # Logs
  66. logs
  67. *.log
  68. npm-debug.log*
  69. yarn-debug.log*
  70. yarn-error.log*
  71. # Runtime data
  72. pids
  73. *.pid
  74. *.seed
  75. *.pid.lock
  76. # Directory for instrumented libs generated by jscoverage/JSCover
  77. lib-cov
  78. # Coverage directory used by tools like istanbul
  79. coverage
  80. test/merged
  81. # nyc test coverage
  82. .nyc_output
  83. # node-waf configuration
  84. .lock-wscript
  85. package-lock.json
  86. # Optional npm cache directory
  87. .npm
  88. # Optional eslint cache
  89. .eslintcache
  90. # Optional REPL history
  91. .node_repl_history
  92. # Output of 'npm pack'
  93. *.tgz
  94. # Yarn Integrity file
  95. .yarn-integrity
  96. # dotenv environment variables file
  97. .env
  98. # parcel-bundler cache (https://parceljs.org/)
  99. .cache
  100. # next.js build output
  101. .next
  102. # nuxt.js build output
  103. .nuxt
  104. # vuepress build output
  105. .vuepress/dist
  106. # Serverless directories
  107. .serverless
  108. ### ReactNative.Gradle Stack ###
  109. .gradle
  110. /build/
  111. # Ignore Gradle GUI config
  112. gradle-app.setting
  113. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  114. !gradle-wrapper.jar
  115. # Cache of project
  116. .gradletasknamecache
  117. ### ReactNative.Buck Stack ###
  118. buck-out/
  119. .buckconfig.local
  120. .buckd/
  121. .buckversion
  122. .fakebuckversion
  123. ### ReactNative.Android Stack ###
  124. # Built application files
  125. *.apk
  126. *.ap_
  127. # Files for the ART/Dalvik VM
  128. *.dex
  129. # Java class files
  130. *.class
  131. # Generated files
  132. gen/
  133. out/
  134. # Gradle files
  135. .gradle/
  136. # Local configuration file (sdk path, etc)
  137. local.properties
  138. # Proguard folder generated by Eclipse
  139. proguard/
  140. # Log Files
  141. # Android Studio Navigation editor temp files
  142. .navigation/
  143. # Android Studio captures folder
  144. captures/
  145. # IntelliJ
  146. .idea
  147. *.iml
  148. .idea/workspace.xml
  149. .idea/tasks.xml
  150. .idea/gradle.xml
  151. .idea/assetWizardSettings.xml
  152. .idea/dictionaries
  153. .idea/libraries
  154. .idea/caches
  155. # External native build folder generated in Android Studio 2.2 and later
  156. .externalNativeBuild
  157. # Google Services (e.g. APIs or Firebase)
  158. google-services.json
  159. # Freeline
  160. freeline.py
  161. freeline/
  162. freeline_project_description.json
  163. # fastlane
  164. fastlane/report.xml
  165. fastlane/Preview.html
  166. fastlane/screenshots
  167. fastlane/test_output
  168. fastlane/readme.md
  169. ### SVN ###
  170. .svn/
  171. ### VisualStudioCode ###
  172. # .vscode/
  173. .history
  174. # metro
  175. tmp
  176. # test
  177. /__snapshots__/