.gitignore 4.2 KB

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