.gitignore 4.2 KB

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