.gitignore 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. # ---> VisualStudioCode
  2. .settings
  3. .vscode
  4. # ---> VisualStudio
  5. ## Ignore Visual Studio temporary files, build results, and
  6. ## files generated by popular Visual Studio add-ons.
  7. # User-specific files
  8. *.suo
  9. *.user
  10. *.userosscache
  11. *.sln.docstates
  12. # User-specific files (MonoDevelop/Xamarin Studio)
  13. *.userprefs
  14. # Build results
  15. [Dd]ebug/
  16. [Dd]ebugPublic/
  17. [Rr]elease/
  18. [Rr]eleases/
  19. x64/
  20. x86/
  21. build/
  22. bld/
  23. [Bb]in/
  24. [Oo]bj/
  25. # Visual Studio 2015 cache/options directory
  26. .vs/
  27. # Uncomment if you have tasks that create the project's static files in wwwroot
  28. #wwwroot/
  29. # MSTest test Results
  30. [Tt]est[Rr]esult*/
  31. [Bb]uild[Ll]og.*
  32. # NUNIT
  33. *.VisualState.xml
  34. TestResult.xml
  35. # Build Results of an ATL Project
  36. [Dd]ebugPS/
  37. [Rr]eleasePS/
  38. dlldata.c
  39. # DNX
  40. project.lock.json
  41. artifacts/
  42. *_i.c
  43. *_p.c
  44. *_i.h
  45. *.ilk
  46. *.meta
  47. *.obj
  48. *.pch
  49. *.pdb
  50. *.pgc
  51. *.pgd
  52. *.rsp
  53. *.sbr
  54. *.tlb
  55. *.tli
  56. *.tlh
  57. *.tmp
  58. *.tmp_proj
  59. *.log
  60. *.vspscc
  61. *.vssscc
  62. .builds
  63. *.pidb
  64. *.svclog
  65. *.scc
  66. # Chutzpah Test files
  67. _Chutzpah*
  68. # Visual C++ cache files
  69. ipch/
  70. *.aps
  71. *.ncb
  72. *.opensdf
  73. *.sdf
  74. *.cachefile
  75. # Visual Studio profiler
  76. *.psess
  77. *.vsp
  78. *.vspx
  79. *.sap
  80. # TFS 2012 Local Workspace
  81. $tf/
  82. # Guidance Automation Toolkit
  83. *.gpState
  84. # ReSharper is a .NET coding add-in
  85. _ReSharper*/
  86. *.[Rr]e[Ss]harper
  87. *.DotSettings.user
  88. # JustCode is a .NET coding add-in
  89. .JustCode
  90. # TeamCity is a build add-in
  91. _TeamCity*
  92. # DotCover is a Code Coverage Tool
  93. *.dotCover
  94. # NCrunch
  95. _NCrunch_*
  96. .*crunch*.local.xml
  97. nCrunchTemp_*
  98. # MightyMoose
  99. *.mm.*
  100. AutoTest.Net/
  101. # Web workbench (sass)
  102. .sass-cache/
  103. # Installshield output folder
  104. [Ee]xpress/
  105. # DocProject is a documentation generator add-in
  106. DocProject/buildhelp/
  107. DocProject/Help/*.HxT
  108. DocProject/Help/*.HxC
  109. DocProject/Help/*.hhc
  110. DocProject/Help/*.hhk
  111. DocProject/Help/*.hhp
  112. DocProject/Help/Html2
  113. DocProject/Help/html
  114. # Click-Once directory
  115. publish/
  116. # Publish Web Output
  117. *.[Pp]ublish.xml
  118. *.azurePubxml
  119. # TODO: Comment the next line if you want to checkin your web deploy settings
  120. # but database connection strings (with potential passwords) will be unencrypted
  121. *.pubxml
  122. *.publishproj
  123. # NuGet Packages
  124. *.nupkg
  125. # The packages folder can be ignored because of Package Restore
  126. **/packages/*
  127. # except build/, which is used as an MSBuild target.
  128. !**/packages/build/
  129. # Uncomment if necessary however generally it will be regenerated when needed
  130. #!**/packages/repositories.config
  131. # Windows Azure Build Output
  132. csx/
  133. *.build.csdef
  134. # Windows Store app package directory
  135. AppPackages/
  136. # Visual Studio cache files
  137. # files ending in .cache can be ignored
  138. *.[Cc]ache
  139. # but keep track of directories ending in .cache
  140. !*.[Cc]ache/
  141. # Others
  142. ClientBin/
  143. [Ss]tyle[Cc]op.*
  144. ~$*
  145. *~
  146. *.dbmdl
  147. *.dbproj.schemaview
  148. *.pfx
  149. *.publishsettings
  150. node_modules/
  151. orleans.codegen.cs
  152. # RIA/Silverlight projects
  153. Generated_Code/
  154. # Backup & report files from converting an old project file
  155. # to a newer Visual Studio version. Backup files are not needed,
  156. # because we have git ;-)
  157. _UpgradeReport_Files/
  158. Backup*/
  159. UpgradeLog*.XML
  160. UpgradeLog*.htm
  161. # SQL Server files
  162. *.mdf
  163. *.ldf
  164. # Business Intelligence projects
  165. *.rdl.data
  166. *.bim.layout
  167. *.bim_*.settings
  168. # Microsoft Fakes
  169. FakesAssemblies/
  170. # Node.js Tools for Visual Studio
  171. .ntvs_analysis.dat
  172. # Visual Studio 6 build log
  173. *.plg
  174. # Visual Studio 6 workspace options file
  175. *.opt
  176. # Visual Studio LightSwitch build output
  177. **/*.HTMLClient/GeneratedArtifacts
  178. **/*.DesktopClient/GeneratedArtifacts
  179. **/*.DesktopClient/ModelManifest.xml
  180. **/*.Server/GeneratedArtifacts
  181. **/*.Server/ModelManifest.xml
  182. _Pvt_Extensions
  183. # ---> VirtualEnv
  184. # Virtualenv
  185. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  186. .Python
  187. [Bb]in
  188. [Ii]nclude
  189. [Ll]ib
  190. [Ll]ocal
  191. [Ss]cripts
  192. pyvenv.cfg
  193. pip-selfcheck.json
  194. # ---> Python
  195. # Byte-compiled / optimized / DLL files
  196. __pycache__/
  197. *.py[cod]
  198. *$py.class
  199. # C extensions
  200. *.so
  201. # Distribution / packaging
  202. .Python
  203. env/
  204. build/
  205. develop-eggs/
  206. dist/
  207. downloads/
  208. eggs/
  209. .eggs/
  210. lib/
  211. lib64/
  212. parts/
  213. sdist/
  214. var/
  215. *.egg-info/
  216. .installed.cfg
  217. *.egg
  218. # PyInstaller
  219. # Usually these files are written by a python script from a template
  220. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  221. *.manifest
  222. *.spec
  223. # Installer logs
  224. pip-log.txt
  225. pip-delete-this-directory.txt
  226. # Unit test / coverage reports
  227. htmlcov/
  228. .tox/
  229. .coverage
  230. .coverage.*
  231. .cache
  232. nosetests.xml
  233. coverage.xml
  234. *,cover
  235. # Translations
  236. *.mo
  237. *.pot
  238. # Django stuff:
  239. *.log
  240. # Sphinx documentation
  241. docs/_build/
  242. # PyBuilder
  243. target/
  244. # ---> PhpStorm
  245. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  246. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  247. # User-specific stuff:
  248. .idea/**/workspace.xml
  249. .idea/**/tasks.xml
  250. .idea/dictionaries
  251. # Sensitive or high-churn files:
  252. .idea/**/dataSources/
  253. .idea/**/dataSources.ids
  254. .idea/**/dataSources.xml
  255. .idea/**/dataSources.local.xml
  256. .idea/**/sqlDataSources.xml
  257. .idea/**/dynamic.xml
  258. .idea/**/uiDesigner.xml
  259. # Gradle:
  260. .idea/**/gradle.xml
  261. .idea/**/libraries
  262. # CMake
  263. cmake-build-debug/
  264. # Mongo Explorer plugin:
  265. .idea/**/mongoSettings.xml
  266. ## File-based project format:
  267. *.iws
  268. ## Plugin-specific files:
  269. # IntelliJ
  270. /out/
  271. # mpeltonen/sbt-idea plugin
  272. .idea_modules/
  273. # JIRA plugin
  274. atlassian-ide-plugin.xml
  275. # Cursive Clojure plugin
  276. .idea/replstate.xml
  277. # Ruby plugin and RubyMine
  278. /.rakeTasks
  279. # Crashlytics plugin (for Android Studio and IntelliJ)
  280. com_crashlytics_export_strings.xml
  281. crashlytics.properties
  282. crashlytics-build.properties
  283. fabric.properties
  284. ### PhpStorm Patch ###
  285. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  286. # *.iml
  287. # modules.xml
  288. # .idea/misc.xml
  289. # *.ipr
  290. # Sonarlint plugin
  291. .idea/sonarlint