.gitignore 3.2 KB

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