.gitignore 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *,cover
  42. # Translations
  43. *.mo
  44. *.pot
  45. # Django stuff:
  46. *.log
  47. # Sphinx documentation
  48. docs/_build/
  49. # PyBuilder
  50. target/
  51. # ---> Vim
  52. [._]*.s[a-w][a-z]
  53. [._]s[a-w][a-z]
  54. *.un~
  55. Session.vim
  56. .netrwhist
  57. *~
  58. # ---> VisualStudioCode
  59. .settings
  60. # ---> VisualStudio
  61. ## Ignore Visual Studio temporary files, build results, and
  62. ## files generated by popular Visual Studio add-ons.
  63. # User-specific files
  64. *.suo
  65. *.user
  66. *.userosscache
  67. *.sln.docstates
  68. # User-specific files (MonoDevelop/Xamarin Studio)
  69. *.userprefs
  70. # Build results
  71. [Dd]ebug/
  72. [Dd]ebugPublic/
  73. [Rr]elease/
  74. [Rr]eleases/
  75. x64/
  76. x86/
  77. build/
  78. bld/
  79. [Bb]in/
  80. [Oo]bj/
  81. # Visual Studio 2015 cache/options directory
  82. .vs/
  83. # Uncomment if you have tasks that create the project's static files in wwwroot
  84. #wwwroot/
  85. # MSTest test Results
  86. [Tt]est[Rr]esult*/
  87. [Bb]uild[Ll]og.*
  88. # NUNIT
  89. *.VisualState.xml
  90. TestResult.xml
  91. # Build Results of an ATL Project
  92. [Dd]ebugPS/
  93. [Rr]eleasePS/
  94. dlldata.c
  95. # DNX
  96. project.lock.json
  97. artifacts/
  98. *_i.c
  99. *_p.c
  100. *_i.h
  101. *.ilk
  102. *.meta
  103. *.obj
  104. *.pch
  105. *.pdb
  106. *.pgc
  107. *.pgd
  108. *.rsp
  109. *.sbr
  110. *.tlb
  111. *.tli
  112. *.tlh
  113. *.tmp
  114. *.tmp_proj
  115. *.log
  116. *.vspscc
  117. *.vssscc
  118. .builds
  119. *.pidb
  120. *.svclog
  121. *.scc
  122. # Chutzpah Test files
  123. _Chutzpah*
  124. # Visual C++ cache files
  125. ipch/
  126. *.aps
  127. *.ncb
  128. *.opensdf
  129. *.sdf
  130. *.cachefile
  131. # Visual Studio profiler
  132. *.psess
  133. *.vsp
  134. *.vspx
  135. *.sap
  136. # TFS 2012 Local Workspace
  137. $tf/
  138. # Guidance Automation Toolkit
  139. *.gpState
  140. # ReSharper is a .NET coding add-in
  141. _ReSharper*/
  142. *.[Rr]e[Ss]harper
  143. *.DotSettings.user
  144. # JustCode is a .NET coding add-in
  145. .JustCode
  146. # TeamCity is a build add-in
  147. _TeamCity*
  148. # DotCover is a Code Coverage Tool
  149. *.dotCover
  150. # NCrunch
  151. _NCrunch_*
  152. .*crunch*.local.xml
  153. nCrunchTemp_*
  154. # MightyMoose
  155. *.mm.*
  156. AutoTest.Net/
  157. # Web workbench (sass)
  158. .sass-cache/
  159. # Installshield output folder
  160. [Ee]xpress/
  161. # DocProject is a documentation generator add-in
  162. DocProject/buildhelp/
  163. DocProject/Help/*.HxT
  164. DocProject/Help/*.HxC
  165. DocProject/Help/*.hhc
  166. DocProject/Help/*.hhk
  167. DocProject/Help/*.hhp
  168. DocProject/Help/Html2
  169. DocProject/Help/html
  170. # Click-Once directory
  171. publish/
  172. # Publish Web Output
  173. *.[Pp]ublish.xml
  174. *.azurePubxml
  175. # TODO: Comment the next line if you want to checkin your web deploy settings
  176. # but database connection strings (with potential passwords) will be unencrypted
  177. *.pubxml
  178. *.publishproj
  179. # NuGet Packages
  180. *.nupkg
  181. # The packages folder can be ignored because of Package Restore
  182. **/packages/*
  183. # except build/, which is used as an MSBuild target.
  184. !**/packages/build/
  185. # Uncomment if necessary however generally it will be regenerated when needed
  186. #!**/packages/repositories.config
  187. # Windows Azure Build Output
  188. csx/
  189. *.build.csdef
  190. # Windows Store app package directory
  191. AppPackages/
  192. # Visual Studio cache files
  193. # files ending in .cache can be ignored
  194. *.[Cc]ache
  195. # but keep track of directories ending in .cache
  196. !*.[Cc]ache/
  197. # Others
  198. ClientBin/
  199. [Ss]tyle[Cc]op.*
  200. ~$*
  201. *~
  202. *.dbmdl
  203. *.dbproj.schemaview
  204. *.pfx
  205. *.publishsettings
  206. node_modules/
  207. orleans.codegen.cs
  208. # RIA/Silverlight projects
  209. Generated_Code/
  210. # Backup & report files from converting an old project file
  211. # to a newer Visual Studio version. Backup files are not needed,
  212. # because we have git ;-)
  213. _UpgradeReport_Files/
  214. Backup*/
  215. UpgradeLog*.XML
  216. UpgradeLog*.htm
  217. # SQL Server files
  218. *.mdf
  219. *.ldf
  220. # Business Intelligence projects
  221. *.rdl.data
  222. *.bim.layout
  223. *.bim_*.settings
  224. # Microsoft Fakes
  225. FakesAssemblies/
  226. # Node.js Tools for Visual Studio
  227. .ntvs_analysis.dat
  228. # Visual Studio 6 build log
  229. *.plg
  230. # Visual Studio 6 workspace options file
  231. *.opt
  232. # Visual Studio LightSwitch build output
  233. **/*.HTMLClient/GeneratedArtifacts
  234. **/*.DesktopClient/GeneratedArtifacts
  235. **/*.DesktopClient/ModelManifest.xml
  236. **/*.Server/GeneratedArtifacts
  237. **/*.Server/ModelManifest.xml
  238. _Pvt_Extensions