.gitignore 3.2 KB

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