.gitignore 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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. # ---> VisualStudioCode
  53. .settings
  54. # ---> VisualStudio
  55. ## Ignore Visual Studio temporary files, build results, and
  56. ## files generated by popular Visual Studio add-ons.
  57. # User-specific files
  58. *.suo
  59. *.user
  60. *.userosscache
  61. *.sln.docstates
  62. # User-specific files (MonoDevelop/Xamarin Studio)
  63. *.userprefs
  64. # Build results
  65. [Dd]ebug/
  66. [Dd]ebugPublic/
  67. [Rr]elease/
  68. [Rr]eleases/
  69. x64/
  70. x86/
  71. build/
  72. bld/
  73. [Bb]in/
  74. [Oo]bj/
  75. # Visual Studio 2015 cache/options directory
  76. .vs/
  77. # Uncomment if you have tasks that create the project's static files in wwwroot
  78. #wwwroot/
  79. # MSTest test Results
  80. [Tt]est[Rr]esult*/
  81. [Bb]uild[Ll]og.*
  82. # NUNIT
  83. *.VisualState.xml
  84. TestResult.xml
  85. # Build Results of an ATL Project
  86. [Dd]ebugPS/
  87. [Rr]eleasePS/
  88. dlldata.c
  89. # DNX
  90. project.lock.json
  91. artifacts/
  92. *_i.c
  93. *_p.c
  94. *_i.h
  95. *.ilk
  96. *.meta
  97. *.obj
  98. *.pch
  99. *.pdb
  100. *.pgc
  101. *.pgd
  102. *.rsp
  103. *.sbr
  104. *.tlb
  105. *.tli
  106. *.tlh
  107. *.tmp
  108. *.tmp_proj
  109. *.log
  110. *.vspscc
  111. *.vssscc
  112. .builds
  113. *.pidb
  114. *.svclog
  115. *.scc
  116. # Chutzpah Test files
  117. _Chutzpah*
  118. # Visual C++ cache files
  119. ipch/
  120. *.aps
  121. *.ncb
  122. *.opensdf
  123. *.sdf
  124. *.cachefile
  125. # Visual Studio profiler
  126. *.psess
  127. *.vsp
  128. *.vspx
  129. *.sap
  130. # TFS 2012 Local Workspace
  131. $tf/
  132. # Guidance Automation Toolkit
  133. *.gpState
  134. # ReSharper is a .NET coding add-in
  135. _ReSharper*/
  136. *.[Rr]e[Ss]harper
  137. *.DotSettings.user
  138. # JustCode is a .NET coding add-in
  139. .JustCode
  140. # TeamCity is a build add-in
  141. _TeamCity*
  142. # DotCover is a Code Coverage Tool
  143. *.dotCover
  144. # NCrunch
  145. _NCrunch_*
  146. .*crunch*.local.xml
  147. nCrunchTemp_*
  148. # MightyMoose
  149. *.mm.*
  150. AutoTest.Net/
  151. # Web workbench (sass)
  152. .sass-cache/
  153. # Installshield output folder
  154. [Ee]xpress/
  155. # DocProject is a documentation generator add-in
  156. DocProject/buildhelp/
  157. DocProject/Help/*.HxT
  158. DocProject/Help/*.HxC
  159. DocProject/Help/*.hhc
  160. DocProject/Help/*.hhk
  161. DocProject/Help/*.hhp
  162. DocProject/Help/Html2
  163. DocProject/Help/html
  164. # Click-Once directory
  165. publish/
  166. # Publish Web Output
  167. *.[Pp]ublish.xml
  168. *.azurePubxml
  169. # TODO: Comment the next line if you want to checkin your web deploy settings
  170. # but database connection strings (with potential passwords) will be unencrypted
  171. *.pubxml
  172. *.publishproj
  173. # NuGet Packages
  174. *.nupkg
  175. # The packages folder can be ignored because of Package Restore
  176. **/packages/*
  177. # except build/, which is used as an MSBuild target.
  178. !**/packages/build/
  179. # Uncomment if necessary however generally it will be regenerated when needed
  180. #!**/packages/repositories.config
  181. # Windows Azure Build Output
  182. csx/
  183. *.build.csdef
  184. # Windows Store app package directory
  185. AppPackages/
  186. # Visual Studio cache files
  187. # files ending in .cache can be ignored
  188. *.[Cc]ache
  189. # but keep track of directories ending in .cache
  190. !*.[Cc]ache/
  191. # Others
  192. ClientBin/
  193. [Ss]tyle[Cc]op.*
  194. ~$*
  195. *~
  196. *.dbmdl
  197. *.dbproj.schemaview
  198. *.pfx
  199. *.publishsettings
  200. node_modules/
  201. orleans.codegen.cs
  202. # RIA/Silverlight projects
  203. Generated_Code/
  204. # Backup & report files from converting an old project file
  205. # to a newer Visual Studio version. Backup files are not needed,
  206. # because we have git ;-)
  207. _UpgradeReport_Files/
  208. Backup*/
  209. UpgradeLog*.XML
  210. UpgradeLog*.htm
  211. # SQL Server files
  212. *.mdf
  213. *.ldf
  214. # Business Intelligence projects
  215. *.rdl.data
  216. *.bim.layout
  217. *.bim_*.settings
  218. # Microsoft Fakes
  219. FakesAssemblies/
  220. # Node.js Tools for Visual Studio
  221. .ntvs_analysis.dat
  222. # Visual Studio 6 build log
  223. *.plg
  224. # Visual Studio 6 workspace options file
  225. *.opt
  226. # Visual Studio LightSwitch build output
  227. **/*.HTMLClient/GeneratedArtifacts
  228. **/*.DesktopClient/GeneratedArtifacts
  229. **/*.DesktopClient/ModelManifest.xml
  230. **/*.Server/GeneratedArtifacts
  231. **/*.Server/ModelManifest.xml
  232. _Pvt_Extensions
  233. # ---> VirtualEnv
  234. # Virtualenv
  235. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  236. .Python
  237. [Bb]in
  238. [Ii]nclude
  239. [Ll]ib
  240. [Ll]ocal
  241. [Ss]cripts
  242. pyvenv.cfg
  243. pip-selfcheck.json
  244. # ---> Vim
  245. [._]*.s[a-w][a-z]
  246. [._]s[a-w][a-z]
  247. *.un~
  248. Session.vim
  249. .netrwhist
  250. *~
  251. # ---> Sass
  252. .sass-cache/
  253. *.css.map