.gitignore 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  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. # ---> Eclipse
  52. *.pydevproject
  53. .metadata
  54. .gradle
  55. bin/
  56. tmp/
  57. *.tmp
  58. *.bak
  59. *.swp
  60. *~.nib
  61. local.properties
  62. .settings/
  63. .loadpath
  64. # Eclipse Core
  65. .project
  66. # External tool builders
  67. .externalToolBuilders/
  68. # Locally stored "Eclipse launch configurations"
  69. *.launch
  70. # CDT-specific
  71. .cproject
  72. # JDT-specific (Eclipse Java Development Tools)
  73. .classpath
  74. # Java annotation processor (APT)
  75. .factorypath
  76. # PDT-specific
  77. .buildpath
  78. # sbteclipse plugin
  79. .target
  80. # TeXlipse plugin
  81. .texlipse
  82. # ---> Linux
  83. *~
  84. # KDE directory preferences
  85. .directory
  86. # Linux trash folder which might appear on any partition or disk
  87. .Trash-*
  88. # ---> Windows
  89. # Windows image file caches
  90. Thumbs.db
  91. ehthumbs.db
  92. # Folder config file
  93. Desktop.ini
  94. # Recycle Bin used on file shares
  95. $RECYCLE.BIN/
  96. # Windows Installer files
  97. *.cab
  98. *.msi
  99. *.msm
  100. *.msp
  101. # Windows shortcuts
  102. *.lnk
  103. # ---> MicrosoftOffice
  104. *.tmp
  105. # Word temporary
  106. ~$*.doc*
  107. # Excel temporary
  108. ~$*.xls*
  109. # Excel Backup File
  110. *.xlk
  111. # ---> Android
  112. # Built application files
  113. *.apk
  114. *.ap_
  115. # Files for the Dalvik VM
  116. *.dex
  117. # Java class files
  118. *.class
  119. # Generated files
  120. bin/
  121. gen/
  122. # Gradle files
  123. .gradle/
  124. build/
  125. # Local configuration file (sdk path, etc)
  126. local.properties
  127. # Proguard folder generated by Eclipse
  128. proguard/
  129. # Log Files
  130. *.log
  131. # Android Studio Navigation editor temp files
  132. .navigation/
  133. # Android Studio captures folder
  134. captures/
  135. # ---> VisualStudio
  136. ## Ignore Visual Studio temporary files, build results, and
  137. ## files generated by popular Visual Studio add-ons.
  138. # User-specific files
  139. *.suo
  140. *.user
  141. *.userosscache
  142. *.sln.docstates
  143. # User-specific files (MonoDevelop/Xamarin Studio)
  144. *.userprefs
  145. # Build results
  146. [Dd]ebug/
  147. [Dd]ebugPublic/
  148. [Rr]elease/
  149. [Rr]eleases/
  150. x64/
  151. x86/
  152. build/
  153. bld/
  154. [Bb]in/
  155. [Oo]bj/
  156. # Visual Studio 2015 cache/options directory
  157. .vs/
  158. # Uncomment if you have tasks that create the project's static files in wwwroot
  159. #wwwroot/
  160. # MSTest test Results
  161. [Tt]est[Rr]esult*/
  162. [Bb]uild[Ll]og.*
  163. # NUNIT
  164. *.VisualState.xml
  165. TestResult.xml
  166. # Build Results of an ATL Project
  167. [Dd]ebugPS/
  168. [Rr]eleasePS/
  169. dlldata.c
  170. # DNX
  171. project.lock.json
  172. artifacts/
  173. *_i.c
  174. *_p.c
  175. *_i.h
  176. *.ilk
  177. *.meta
  178. *.obj
  179. *.pch
  180. *.pdb
  181. *.pgc
  182. *.pgd
  183. *.rsp
  184. *.sbr
  185. *.tlb
  186. *.tli
  187. *.tlh
  188. *.tmp
  189. *.tmp_proj
  190. *.log
  191. *.vspscc
  192. *.vssscc
  193. .builds
  194. *.pidb
  195. *.svclog
  196. *.scc
  197. # Chutzpah Test files
  198. _Chutzpah*
  199. # Visual C++ cache files
  200. ipch/
  201. *.aps
  202. *.ncb
  203. *.opensdf
  204. *.sdf
  205. *.cachefile
  206. # Visual Studio profiler
  207. *.psess
  208. *.vsp
  209. *.vspx
  210. *.sap
  211. # TFS 2012 Local Workspace
  212. $tf/
  213. # Guidance Automation Toolkit
  214. *.gpState
  215. # ReSharper is a .NET coding add-in
  216. _ReSharper*/
  217. *.[Rr]e[Ss]harper
  218. *.DotSettings.user
  219. # JustCode is a .NET coding add-in
  220. .JustCode
  221. # TeamCity is a build add-in
  222. _TeamCity*
  223. # DotCover is a Code Coverage Tool
  224. *.dotCover
  225. # NCrunch
  226. _NCrunch_*
  227. .*crunch*.local.xml
  228. nCrunchTemp_*
  229. # MightyMoose
  230. *.mm.*
  231. AutoTest.Net/
  232. # Web workbench (sass)
  233. .sass-cache/
  234. # Installshield output folder
  235. [Ee]xpress/
  236. # DocProject is a documentation generator add-in
  237. DocProject/buildhelp/
  238. DocProject/Help/*.HxT
  239. DocProject/Help/*.HxC
  240. DocProject/Help/*.hhc
  241. DocProject/Help/*.hhk
  242. DocProject/Help/*.hhp
  243. DocProject/Help/Html2
  244. DocProject/Help/html
  245. # Click-Once directory
  246. publish/
  247. # Publish Web Output
  248. *.[Pp]ublish.xml
  249. *.azurePubxml
  250. # TODO: Comment the next line if you want to checkin your web deploy settings
  251. # but database connection strings (with potential passwords) will be unencrypted
  252. *.pubxml
  253. *.publishproj
  254. # NuGet Packages
  255. *.nupkg
  256. # The packages folder can be ignored because of Package Restore
  257. **/packages/*
  258. # except build/, which is used as an MSBuild target.
  259. !**/packages/build/
  260. # Uncomment if necessary however generally it will be regenerated when needed
  261. #!**/packages/repositories.config
  262. # Windows Azure Build Output
  263. csx/
  264. *.build.csdef
  265. # Windows Store app package directory
  266. AppPackages/
  267. # Visual Studio cache files
  268. # files ending in .cache can be ignored
  269. *.[Cc]ache
  270. # but keep track of directories ending in .cache
  271. !*.[Cc]ache/
  272. # Others
  273. ClientBin/
  274. [Ss]tyle[Cc]op.*
  275. ~$*
  276. *~
  277. *.dbmdl
  278. *.dbproj.schemaview
  279. *.pfx
  280. *.publishsettings
  281. node_modules/
  282. orleans.codegen.cs
  283. # RIA/Silverlight projects
  284. Generated_Code/
  285. # Backup & report files from converting an old project file
  286. # to a newer Visual Studio version. Backup files are not needed,
  287. # because we have git ;-)
  288. _UpgradeReport_Files/
  289. Backup*/
  290. UpgradeLog*.XML
  291. UpgradeLog*.htm
  292. # SQL Server files
  293. *.mdf
  294. *.ldf
  295. # Business Intelligence projects
  296. *.rdl.data
  297. *.bim.layout
  298. *.bim_*.settings
  299. # Microsoft Fakes
  300. FakesAssemblies/
  301. # Node.js Tools for Visual Studio
  302. .ntvs_analysis.dat
  303. # Visual Studio 6 build log
  304. *.plg
  305. # Visual Studio 6 workspace options file
  306. *.opt
  307. # Visual Studio LightSwitch build output
  308. **/*.HTMLClient/GeneratedArtifacts
  309. **/*.DesktopClient/GeneratedArtifacts
  310. **/*.DesktopClient/ModelManifest.xml
  311. **/*.Server/GeneratedArtifacts
  312. **/*.Server/ModelManifest.xml
  313. _Pvt_Extensions
  314. # ---> VisualStudioCode
  315. .settings