.gitignore 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### Go template
  3. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  4. *.o
  5. *.a
  6. *.so
  7. # Folders
  8. _obj
  9. _test
  10. # Architecture specific extensions/prefixes
  11. *.[568vq]
  12. [568vq].out
  13. *.cgo1.go
  14. *.cgo2.c
  15. _cgo_defun.c
  16. _cgo_gotypes.go
  17. _cgo_export.*
  18. _testmain.go
  19. *.exe
  20. *.test
  21. *.prof
  22. ### Windows template
  23. # Windows image file caches
  24. Thumbs.db
  25. ehthumbs.db
  26. # Folder config file
  27. Desktop.ini
  28. # Recycle Bin used on file shares
  29. $RECYCLE.BIN/
  30. # Windows Installer files
  31. *.cab
  32. *.msi
  33. *.msm
  34. *.msp
  35. # Windows shortcuts
  36. *.lnk
  37. ### Kate template
  38. # Swap Files #
  39. .*.kate-swp
  40. .swp.*
  41. ### SublimeText template
  42. # cache files for sublime text
  43. *.tmlanguage.cache
  44. *.tmPreferences.cache
  45. *.stTheme.cache
  46. # workspace files are user-specific
  47. *.sublime-workspace
  48. # project files should be checked into the repository, unless a significant
  49. # proportion of contributors will probably not be using SublimeText
  50. # *.sublime-project
  51. # sftp configuration file
  52. sftp-config.json
  53. ### Linux template
  54. *~
  55. # temporary files which can be created if a process still has a handle open of a deleted file
  56. .fuse_hidden*
  57. # KDE directory preferences
  58. .directory
  59. # Linux trash folder which might appear on any partition or disk
  60. .Trash-*
  61. ### JetBrains template
  62. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  63. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  64. # User-specific stuff:
  65. .idea
  66. .idea/tasks.xml
  67. .idea/dictionaries
  68. .idea/vcs.xml
  69. .idea/jsLibraryMappings.xml
  70. # Sensitive or high-churn files:
  71. .idea/dataSources.ids
  72. .idea/dataSources.xml
  73. .idea/dataSources.local.xml
  74. .idea/sqlDataSources.xml
  75. .idea/dynamic.xml
  76. .idea/uiDesigner.xml
  77. # Gradle:
  78. .idea/gradle.xml
  79. .idea/libraries
  80. # Mongo Explorer plugin:
  81. .idea/mongoSettings.xml
  82. ## File-based project format:
  83. *.iws
  84. ## Plugin-specific files:
  85. # IntelliJ
  86. /out/
  87. # mpeltonen/sbt-idea plugin
  88. .idea_modules/
  89. # JIRA plugin
  90. atlassian-ide-plugin.xml
  91. # Crashlytics plugin (for Android Studio and IntelliJ)
  92. com_crashlytics_export_strings.xml
  93. crashlytics.properties
  94. crashlytics-build.properties
  95. fabric.properties
  96. ### Xcode template
  97. # Xcode
  98. #
  99. # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
  100. ## Build generated
  101. build/
  102. DerivedData/
  103. ## Various settings
  104. *.pbxuser
  105. !default.pbxuser
  106. *.mode1v3
  107. !default.mode1v3
  108. *.mode2v3
  109. !default.mode2v3
  110. *.perspectivev3
  111. !default.perspectivev3
  112. xcuserdata/
  113. ## Other
  114. *.moved-aside
  115. *.xccheckout
  116. *.xcscmblueprint
  117. ### Eclipse template
  118. .metadata
  119. bin/
  120. tmp/
  121. *.tmp
  122. *.bak
  123. *.swp
  124. *~.nib
  125. local.properties
  126. .settings/
  127. .loadpath
  128. .recommenders
  129. # Eclipse Core
  130. .project
  131. # External tool builders
  132. .externalToolBuilders/
  133. # Locally stored "Eclipse launch configurations"
  134. *.launch
  135. # PyDev specific (Python IDE for Eclipse)
  136. *.pydevproject
  137. # CDT-specific (C/C++ Development Tooling)
  138. .cproject
  139. # JDT-specific (Eclipse Java Development Tools)
  140. .classpath
  141. # Java annotation processor (APT)
  142. .factorypath
  143. # PDT-specific (PHP Development Tools)
  144. .buildpath
  145. # sbteclipse plugin
  146. .target
  147. # Tern plugin
  148. .tern-project
  149. # TeXlipse plugin
  150. .texlipse
  151. # STS (Spring Tool Suite)
  152. .springBeans
  153. # Code Recommenders
  154. .recommenders/
  155. coverage.txt
  156. #vendor
  157. vendor/