.gitignore 4.2 KB

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