.gitignore 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. # Created by https://www.gitignore.io
  2. docs/cldoc
  3. ### Windows ###
  4. # Windows image file caches
  5. Thumbs.db
  6. ehthumbs.db
  7. # Folder config file
  8. Desktop.ini
  9. # Recycle Bin used on file shares
  10. $RECYCLE.BIN/
  11. # Windows Installer files
  12. *.cab
  13. *.msi
  14. *.msm
  15. *.msp
  16. # Windows shortcuts
  17. *.lnk
  18. ### OSX ###
  19. .DS_Store
  20. .AppleDouble
  21. .LSOverride
  22. # Icon must end with two \r
  23. Icon
  24. # Thumbnails
  25. ._*
  26. # Files that might appear in the root of a volume
  27. .DocumentRevisions-V100
  28. .fseventsd
  29. .Spotlight-V100
  30. .TemporaryItems
  31. .Trashes
  32. .VolumeIcon.icns
  33. # Directories potentially created on remote AFP share
  34. .AppleDB
  35. .AppleDesktop
  36. Network Trash Folder
  37. Temporary Items
  38. .apdisk
  39. ### Linux ###
  40. *~
  41. # KDE directory preferences
  42. .directory
  43. # Linux trash folder which might appear on any partition or disk
  44. .Trash-*
  45. ### VisualStudio ###
  46. ## Ignore Visual Studio temporary files, build results, and
  47. ## files generated by popular Visual Studio add-ons.
  48. # User-specific files
  49. *.suo
  50. *.user
  51. *.userosscache
  52. *.sln.docstates
  53. # User-specific files (MonoDevelop/Xamarin Studio)
  54. *.userprefs
  55. # Build results
  56. [Dd]ebug/
  57. [Dd]ebugPublic/
  58. [Rr]elease/
  59. [Rr]eleases/
  60. bld/
  61. [Oo]bj/
  62. # Visual Studo 2015 cache/options directory
  63. .vs/
  64. # MSTest test Results
  65. [Tt]est[Rr]esult*/
  66. [Bb]uild[Ll]og.*
  67. # NUNIT
  68. *.VisualState.xml
  69. TestResult.xml
  70. # Build Results of an ATL Project
  71. [Dd]ebugPS/
  72. [Rr]eleasePS/
  73. dlldata.c
  74. *_i.c
  75. *_p.c
  76. *_i.h
  77. *.ilk
  78. *.meta
  79. *.obj
  80. *.pch
  81. *.pdb
  82. *.pgc
  83. *.pgd
  84. *.rsp
  85. *.sbr
  86. *.tlb
  87. *.tli
  88. *.tlh
  89. *.tmp
  90. *.tmp_proj
  91. *.log
  92. *.vspscc
  93. *.vssscc
  94. .builds
  95. *.pidb
  96. *.svclog
  97. *.scc
  98. # Chutzpah Test files
  99. _Chutzpah*
  100. # Visual C++ cache files
  101. ipch/
  102. *.aps
  103. *.ncb
  104. *.opensdf
  105. *.sdf
  106. *.cachefile
  107. # Visual Studio profiler
  108. *.psess
  109. *.vsp
  110. *.vspx
  111. # TFS 2012 Local Workspace
  112. $tf/
  113. # Guidance Automation Toolkit
  114. *.gpState
  115. # ReSharper is a .NET coding add-in
  116. _ReSharper*/
  117. *.[Rr]e[Ss]harper
  118. *.DotSettings.user
  119. # JustCode is a .NET coding addin-in
  120. .JustCode
  121. # TeamCity is a build add-in
  122. _TeamCity*
  123. # DotCover is a Code Coverage Tool
  124. *.dotCover
  125. # NCrunch
  126. _NCrunch_*
  127. .*crunch*.local.xml
  128. # MightyMoose
  129. *.mm.*
  130. AutoTest.Net/
  131. # Web workbench (sass)
  132. .sass-cache/
  133. # Installshield output folder
  134. [Ee]xpress/
  135. # DocProject is a documentation generator add-in
  136. DocProject/buildhelp/
  137. DocProject/Help/*.HxT
  138. DocProject/Help/*.HxC
  139. DocProject/Help/*.hhc
  140. DocProject/Help/*.hhk
  141. DocProject/Help/*.hhp
  142. DocProject/Help/Html2
  143. DocProject/Help/html
  144. # Click-Once directory
  145. publish/
  146. # Publish Web Output
  147. *.[Pp]ublish.xml
  148. *.azurePubxml
  149. # TODO: Comment the next line if you want to checkin your web deploy settings
  150. # but database connection strings (with potential passwords) will be unencrypted
  151. *.pubxml
  152. *.publishproj
  153. # NuGet Packages
  154. *.nupkg
  155. # The packages folder can be ignored because of Package Restore
  156. **/packages/*
  157. # except build/, which is used as an MSBuild target.
  158. !**/packages/build/
  159. # Uncomment if necessary however generally it will be regenerated when needed
  160. #!**/packages/repositories.config
  161. # Windows Azure Build Output
  162. csx/
  163. *.build.csdef
  164. # Windows Store app package directory
  165. AppPackages/
  166. # Others
  167. *.[Cc]ache
  168. ClientBin/
  169. [Ss]tyle[Cc]op.*
  170. ~$*
  171. *~
  172. *.dbmdl
  173. *.dbproj.schemaview
  174. *.pfx
  175. *.publishsettings
  176. node_modules/
  177. bower_components/
  178. # RIA/Silverlight projects
  179. Generated_Code/
  180. # Backup & report files from converting an old project file
  181. # to a newer Visual Studio version. Backup files are not needed,
  182. # because we have git ;-)
  183. _UpgradeReport_Files/
  184. Backup*/
  185. UpgradeLog*.XML
  186. UpgradeLog*.htm
  187. # SQL Server files
  188. *.mdf
  189. *.ldf
  190. # Business Intelligence projects
  191. *.rdl.data
  192. *.bim.layout
  193. *.bim_*.settings
  194. # Microsoft Fakes
  195. FakesAssemblies/
  196. # Node.js Tools for Visual Studio
  197. .ntvs_analysis.dat
  198. # Visual Studio 6 build log
  199. *.plg
  200. # Visual Studio 6 workspace options file
  201. *.opt
  202. ### Xcode ###
  203. *.pbxuser
  204. !default.pbxuser
  205. *.mode1v3
  206. !default.mode1v3
  207. *.mode2v3
  208. !default.mode2v3
  209. *.perspectivev3
  210. !default.perspectivev3
  211. xcuserdata
  212. *.xccheckout
  213. *.moved-aside
  214. DerivedData
  215. *.xcuserstate
  216. ### Vim ###
  217. [._]*.s[a-w][a-z]
  218. [._]s[a-w][a-z]
  219. *.un~
  220. Session.vim
  221. .netrwhist
  222. *~