.gitignore 3.2 KB

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