.gitignore 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. out
  2. # Created by https://www.gitignore.io/api/linux,cmake,clion,windows,visualstudio
  3. ### CLion ###
  4. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  5. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  6. # User-specific stuff:
  7. .idea/**/workspace.xml
  8. .idea/**/tasks.xml
  9. .idea/dictionaries
  10. # Sensitive or high-churn files:
  11. .idea/**/dataSources/
  12. .idea/**/dataSources.ids
  13. .idea/**/dataSources.xml
  14. .idea/**/dataSources.local.xml
  15. .idea/**/sqlDataSources.xml
  16. .idea/**/dynamic.xml
  17. .idea/**/uiDesigner.xml
  18. # Gradle:
  19. .idea/**/gradle.xml
  20. .idea/**/libraries
  21. # CMake
  22. cmake-build-debug/
  23. cmake-build-release/
  24. # Mongo Explorer plugin:
  25. .idea/**/mongoSettings.xml
  26. ## File-based project format:
  27. *.iws
  28. ## Plugin-specific files:
  29. # IntelliJ
  30. /out/
  31. # mpeltonen/sbt-idea plugin
  32. .idea_modules/
  33. # JIRA plugin
  34. atlassian-ide-plugin.xml
  35. # Cursive Clojure plugin
  36. .idea/replstate.xml
  37. # Ruby plugin and RubyMine
  38. /.rakeTasks
  39. # Crashlytics plugin (for Android Studio and IntelliJ)
  40. com_crashlytics_export_strings.xml
  41. crashlytics.properties
  42. crashlytics-build.properties
  43. fabric.properties
  44. ### CLion Patch ###
  45. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  46. # *.iml
  47. # modules.xml
  48. # .idea/misc.xml
  49. # *.ipr
  50. # Sonarlint plugin
  51. .idea/sonarlint
  52. ### CMake ###
  53. CMakeCache.txt
  54. CMakeFiles
  55. CMakeScripts
  56. Testing
  57. Makefile
  58. cmake_install.cmake
  59. install_manifest.txt
  60. compile_commands.json
  61. CTestTestfile.cmake
  62. build
  63. ### Linux ###
  64. *~
  65. # temporary files which can be created if a process still has a handle open of a deleted file
  66. .fuse_hidden*
  67. # KDE directory preferences
  68. .directory
  69. # Linux trash folder which might appear on any partition or disk
  70. .Trash-*
  71. # .nfs files are created when an open file is removed but is still being accessed
  72. .nfs*
  73. ### Windows ###
  74. # Windows thumbnail cache files
  75. Thumbs.db
  76. ehthumbs.db
  77. ehthumbs_vista.db
  78. # Folder config file
  79. Desktop.ini
  80. # Recycle Bin used on file shares
  81. $RECYCLE.BIN/
  82. # Windows Installer files
  83. *.cab
  84. *.msi
  85. *.msm
  86. *.msp
  87. # Windows shortcuts
  88. *.lnk
  89. ### VisualStudio ###
  90. ## Ignore Visual Studio temporary files, build results, and
  91. ## files generated by popular Visual Studio add-ons.
  92. ##
  93. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  94. # User-specific files
  95. *.suo
  96. *.user
  97. *.userosscache
  98. *.sln.docstates
  99. # User-specific files (MonoDevelop/Xamarin Studio)
  100. *.userprefs
  101. # Build results
  102. [Dd]ebug/
  103. [Dd]ebugPublic/
  104. [Rr]elease/
  105. [Rr]eleases/
  106. x64/
  107. x86/
  108. bld/
  109. [Bb]in/
  110. [Oo]bj/
  111. [Ll]og/
  112. # Visual Studio 2015 cache/options directory
  113. .vs/
  114. # Uncomment if you have tasks that create the project's static files in wwwroot
  115. #wwwroot/
  116. # MSTest test Results
  117. [Tt]est[Rr]esult*/
  118. [Bb]uild[Ll]og.*
  119. # NUNIT
  120. *.VisualState.xml
  121. TestResult.xml
  122. # Build Results of an ATL Project
  123. [Dd]ebugPS/
  124. [Rr]eleasePS/
  125. dlldata.c
  126. # .NET Core
  127. project.lock.json
  128. project.fragment.lock.json
  129. artifacts/
  130. **/Properties/launchSettings.json
  131. *_i.c
  132. *_p.c
  133. *_i.h
  134. *.ilk
  135. *.meta
  136. *.pch
  137. *.pdb
  138. *.pgc
  139. *.pgd
  140. *.rsp
  141. *.sbr
  142. *.tlb
  143. *.tli
  144. *.tlh
  145. *.tmp
  146. *.tmp_proj
  147. *.log
  148. *.vspscc
  149. *.vssscc
  150. .builds
  151. *.pidb
  152. *.svclog
  153. *.scc
  154. # Chutzpah Test files
  155. _Chutzpah*
  156. # Visual C++ cache files
  157. ipch/
  158. *.aps
  159. *.ncb
  160. *.opendb
  161. *.opensdf
  162. *.sdf
  163. *.cachefile
  164. *.VC.db
  165. *.VC.VC.opendb
  166. # Visual Studio profiler
  167. *.psess
  168. *.vsp
  169. *.vspx
  170. *.sap
  171. # TFS 2012 Local Workspace
  172. $tf/
  173. # Guidance Automation Toolkit
  174. *.gpState
  175. # ReSharper is a .NET coding add-in
  176. _ReSharper*/
  177. *.[Rr]e[Ss]harper
  178. *.DotSettings.user
  179. # JustCode is a .NET coding add-in
  180. .JustCode
  181. # TeamCity is a build add-in
  182. _TeamCity*
  183. # DotCover is a Code Coverage Tool
  184. *.dotCover
  185. # Visual Studio code coverage results
  186. *.coverage
  187. *.coveragexml
  188. # NCrunch
  189. _NCrunch_*
  190. .*crunch*.local.xml
  191. nCrunchTemp_*
  192. # MightyMoose
  193. *.mm.*
  194. AutoTest.Net/
  195. # Web workbench (sass)
  196. .sass-cache/
  197. # Installshield output folder
  198. [Ee]xpress/
  199. # DocProject is a documentation generator add-in
  200. DocProject/buildhelp/
  201. DocProject/Help/*.HxT
  202. DocProject/Help/*.HxC
  203. DocProject/Help/*.hhc
  204. DocProject/Help/*.hhk
  205. DocProject/Help/*.hhp
  206. DocProject/Help/Html2
  207. DocProject/Help/html
  208. # Click-Once directory
  209. publish/
  210. # Publish Web Output
  211. *.[Pp]ublish.xml
  212. *.azurePubxml
  213. # TODO: Uncomment the next line to ignore your web deploy settings.
  214. # By default, sensitive information, such as encrypted password
  215. # should be stored in the .pubxml.user file.
  216. #*.pubxml
  217. *.pubxml.user
  218. *.publishproj
  219. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  220. # checkin your Azure Web App publish settings, but sensitive information contained
  221. # in these scripts will be unencrypted
  222. PublishScripts/
  223. # NuGet Packages
  224. *.nupkg
  225. # The packages folder can be ignored because of Package Restore
  226. **/packages/*
  227. # except build/, which is used as an MSBuild target.
  228. !**/packages/build/
  229. # Uncomment if necessary however generally it will be regenerated when needed
  230. #!**/packages/repositories.config
  231. # NuGet v3's project.json files produces more ignorable files
  232. *.nuget.props
  233. *.nuget.targets
  234. # Microsoft Azure Build Output
  235. csx/
  236. *.build.csdef
  237. # Microsoft Azure Emulator
  238. ecf/
  239. rcf/
  240. # Windows Store app package directories and files
  241. AppPackages/
  242. BundleArtifacts/
  243. Package.StoreAssociation.xml
  244. _pkginfo.txt
  245. # Visual Studio cache files
  246. # files ending in .cache can be ignored
  247. *.[Cc]ache
  248. # but keep track of directories ending in .cache
  249. !*.[Cc]ache/
  250. # Others
  251. ClientBin/
  252. ~$*
  253. *.dbmdl
  254. *.dbproj.schemaview
  255. *.jfm
  256. *.pfx
  257. *.publishsettings
  258. orleans.codegen.cs
  259. # Since there are multiple workflows, uncomment next line to ignore bower_components
  260. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  261. #bower_components/
  262. # RIA/Silverlight projects
  263. Generated_Code/
  264. # Backup & report files from converting an old project file
  265. # to a newer Visual Studio version. Backup files are not needed,
  266. # because we have git ;-)
  267. _UpgradeReport_Files/
  268. Backup*/
  269. UpgradeLog*.XML
  270. UpgradeLog*.htm
  271. # SQL Server files
  272. *.mdf
  273. *.ldf
  274. *.ndf
  275. # Business Intelligence projects
  276. *.rdl.data
  277. *.bim.layout
  278. *.bim_*.settings
  279. # Microsoft Fakes
  280. FakesAssemblies/
  281. # GhostDoc plugin setting file
  282. *.GhostDoc.xml
  283. # Node.js Tools for Visual Studio
  284. .ntvs_analysis.dat
  285. node_modules/
  286. # Typescript v1 declaration files
  287. typings/
  288. # Visual Studio 6 build log
  289. *.plg
  290. # Visual Studio 6 workspace options file
  291. *.opt
  292. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  293. *.vbw
  294. # Visual Studio LightSwitch build output
  295. **/*.HTMLClient/GeneratedArtifacts
  296. **/*.DesktopClient/GeneratedArtifacts
  297. **/*.DesktopClient/ModelManifest.xml
  298. **/*.Server/GeneratedArtifacts
  299. **/*.Server/ModelManifest.xml
  300. _Pvt_Extensions
  301. # Paket dependency manager
  302. .paket/paket.exe
  303. paket-files/
  304. # FAKE - F# Make
  305. .fake/
  306. # JetBrains Rider
  307. .idea/
  308. *.sln.iml
  309. # CodeRush
  310. .cr/
  311. # Python Tools for Visual Studio (PTVS)
  312. __pycache__/
  313. *.pyc
  314. # Cake - Uncomment if you are using it
  315. # tools/**
  316. # !tools/packages.config
  317. # Telerik's JustMock configuration file
  318. *.jmconfig
  319. # BizTalk build output
  320. *.btp.cs
  321. *.btm.cs
  322. *.odx.cs
  323. *.xsd.cs
  324. ### VisualStudio Patch ###
  325. # By default, sensitive information, such as encrypted password
  326. # should be stored in the .pubxml.user file.
  327. # End of https://www.gitignore.io/api/linux,cmake,clion,windows,visualstudio