.gitignore 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. # Miscellaneous
  2. *.class
  3. *.log
  4. *.pyc
  5. *.swp
  6. *.swo
  7. *~
  8. .DS_Store
  9. .atom/
  10. .buildlog/
  11. .history
  12. .svn/
  13. migrate_working_dir/
  14. # ============================================
  15. # Java / Maven / Gradle
  16. # ============================================
  17. # Compiled class files
  18. *.class
  19. # Log files
  20. *.log
  21. # Package Files
  22. *.jar
  23. *.war
  24. *.nar
  25. *.ear
  26. *.zip
  27. *.tar.gz
  28. *.rar
  29. # Maven
  30. target/
  31. pom.xml.tag
  32. pom.xml.releaseBackup
  33. pom.xml.versionsBackup
  34. pom.xml.next
  35. release.properties
  36. dependency-reduced-pom.xml
  37. buildNumber.properties
  38. .mvn/timing.properties
  39. .mvn/wrapper/maven-wrapper.jar
  40. # Gradle
  41. .gradle
  42. build/
  43. !gradle/wrapper/gradle-wrapper.jar
  44. !**/src/main/**/build/
  45. !**/src/test/**/build/
  46. gradle-app.setting
  47. !gradle-wrapper.jar
  48. .gradletasknamecache
  49. # Eclipse
  50. .classpath
  51. .project
  52. .settings/
  53. bin/
  54. tmp/
  55. *.tmp
  56. *.bak
  57. *.swp
  58. *~.nib
  59. local.properties
  60. .loadpath
  61. .recommenders
  62. # IntelliJ IDEA
  63. *.iml
  64. *.ipr
  65. *.iws
  66. .idea/
  67. out/
  68. *.iws
  69. *.iml
  70. *.ipr
  71. # NetBeans
  72. /nbproject/private/
  73. /nbbuild/
  74. /dist/
  75. /nbdist/
  76. /.nb-gradle/
  77. # VS Code
  78. .vscode/
  79. *.code-workspace
  80. # Spring Boot
  81. spring-boot-*.log
  82. application-*.properties
  83. !application.yml
  84. !application.properties
  85. # ============================================
  86. # Flutter / Dart
  87. # ============================================
  88. # Flutter/Dart/Pub related
  89. **/doc/api/
  90. **/ios/Flutter/.last_build_id
  91. .dart_tool/
  92. .flutter-plugins
  93. .flutter-plugins-dependencies
  94. .packages
  95. .pub-cache/
  96. .pub/
  97. build/
  98. *.dart.js
  99. *.js_
  100. *.js.deps
  101. *.js.map
  102. # Symbolication related
  103. app.*.symbols
  104. # Obfuscation related
  105. app.*.map.json
  106. # Android Studio will place build artifacts here
  107. /android/app/debug
  108. /android/app/profile
  109. /android/app/release
  110. # iOS related
  111. **/ios/**/*.mode1v3
  112. **/ios/**/*.mode2v3
  113. **/ios/**/*.moved-aside
  114. **/ios/**/*.pbxuser
  115. **/ios/**/*.perspectivev3
  116. **/ios/**/*sync/
  117. **/ios/**/.sconsign.dblite
  118. **/ios/**/.tags*
  119. **/ios/**/.vagrant/
  120. **/ios/**/DerivedData/
  121. **/ios/**/Icon?
  122. **/ios/**/Pods/
  123. **/ios/**/.symlinks/
  124. **/ios/**/profile
  125. **/ios/**/xcuserdata
  126. **/ios/.generated/
  127. **/ios/Flutter/.last_build_id
  128. **/ios/Flutter/App.framework
  129. **/ios/Flutter/Flutter.framework
  130. **/ios/Flutter/Flutter.podspec
  131. **/ios/Flutter/Generated.xcconfig
  132. **/ios/Flutter/ephemeral
  133. **/ios/Flutter/app.flx
  134. **/ios/Flutter/app.zip
  135. **/ios/Flutter/flutter_assets/
  136. **/ios/Flutter/flutter_export_environment.sh
  137. **/ios/ServiceDefinitions.json
  138. **/ios/Runner/GeneratedPluginRegistrant.*
  139. # Web related
  140. **/web/**/main.dart.js
  141. **/web/**/main.dart.js.map
  142. **/web/**/flutter_service_worker.js
  143. **/web/**/flutter_bootstrap.js
  144. # Coverage
  145. coverage/
  146. *.lcov
  147. test/.test_coverage.dart
  148. # Exceptions to above rules.
  149. !**/ios/**/default.mode1v3
  150. !**/ios/**/default.mode2v3
  151. !**/ios/**/default.pbxuser
  152. !**/ios/**/default.perspectivev3
  153. # ============================================
  154. # Vue / Node.js / npm / yarn
  155. # ============================================
  156. # Dependencies
  157. node_modules/
  158. npm-debug.log*
  159. yarn-debug.log*
  160. yarn-error.log*
  161. lerna-debug.log*
  162. .pnpm-debug.log*
  163. # Runtime data
  164. pids
  165. *.pid
  166. *.seed
  167. *.pid.lock
  168. # Directory for instrumented libs generated by jscoverage/JSCover
  169. lib-cov
  170. # Coverage directory used by tools like istanbul
  171. coverage/
  172. *.lcov
  173. .nyc_output
  174. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  175. .grunt
  176. # Bower dependency directory (https://bower.io/)
  177. bower_components
  178. # node-waf configuration
  179. .lock-wscript
  180. # Compiled binary addons (https://nodejs.org/api/addons.html)
  181. build/Release
  182. # Dependency directories
  183. jspm_packages/
  184. # Snowpack dependency directory (https://snowpack.dev/)
  185. web_modules/
  186. # TypeScript cache
  187. *.tsbuildinfo
  188. # Optional npm cache directory
  189. .npm
  190. # Optional eslint cache
  191. .eslintcache
  192. # Optional stylelint cache
  193. .stylelintcache
  194. # Microbundle cache
  195. .rpt2_cache/
  196. .rts2_cache_cjs/
  197. .rts2_cache_es/
  198. .rts2_cache_umd/
  199. # Optional REPL history
  200. .node_repl_history
  201. # Output of 'npm pack'
  202. *.tgz
  203. # Yarn Integrity file
  204. .yarn-integrity
  205. # dotenv environment variable files
  206. .env
  207. .env.development.local
  208. .env.test.local
  209. .env.production.local
  210. .env.local
  211. # parcel-bundler cache (https://parceljs.org/)
  212. .cache
  213. .parcel-cache
  214. # Next.js build output
  215. .next
  216. out
  217. # Nuxt.js build / generate output
  218. .nuxt
  219. dist
  220. # Gatsby files
  221. .cache/
  222. # Comment in the public line in if your project uses Gatsby and not Next.js
  223. # https://nextjs.org/blog/next-9-1#public-directory-support
  224. # public
  225. # vuepress build output
  226. .vuepress/dist
  227. # vuepress v2.x temp and cache directory
  228. .temp
  229. .cache
  230. # Serverless directories
  231. .serverless/
  232. # FuseBox cache
  233. .fusebox/
  234. # DynamoDB Local files
  235. .dynamodb/
  236. # TernJS port file
  237. .tern-port
  238. # Stores VSCode versions used for testing VSCode extensions
  239. .vscode-test
  240. # yarn v2
  241. .yarn/cache
  242. .yarn/unplugged
  243. .yarn/build-state.yml
  244. .yarn/install-state.gz
  245. .pnp.*
  246. # Vue specific
  247. *.local
  248. .DS_Store
  249. dist/
  250. dist-ssr/
  251. *.local
  252. # Vite
  253. vite.config.js.timestamp-*
  254. vite.config.ts.timestamp-*
  255. # ============================================
  256. # Project specific
  257. # ============================================
  258. # Project docs (temporary)
  259. a_docs/
  260. # Database
  261. *.db
  262. *.sqlite
  263. *.sqlite3
  264. # Configuration files with sensitive data
  265. application-local.yml
  266. application-local.properties
  267. *.secret
  268. *.key
  269. *.pem
  270. # Temporary files
  271. *.tmp
  272. *.temp
  273. *.swp
  274. *.swo
  275. *~