.gitignore 5.4 KB

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