.gitignore 4.3 KB

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