.gitignore 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. # Created by https://www.toptal.com/developers/gitignore/api/intellij+all,visualstudio,visualstudiocode,cmake,c,c++
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=intellij+all,visualstudio,visualstudiocode,cmake,c,c++
  3. ### C ###
  4. # Prerequisites
  5. *.d
  6. # Object files
  7. *.o
  8. *.ko
  9. *.obj
  10. *.elf
  11. # Linker output
  12. *.ilk
  13. *.map
  14. *.exp
  15. # Precompiled Headers
  16. *.gch
  17. *.pch
  18. # Libraries
  19. *.lib
  20. *.a
  21. *.la
  22. *.lo
  23. # Shared objects (inc. Windows DLLs)
  24. *.dll
  25. *.so
  26. *.so.*
  27. *.dylib
  28. # Executables
  29. *.exe
  30. *.out
  31. *.app
  32. *.i*86
  33. *.x86_64
  34. *.hex
  35. # Debug files
  36. *.dSYM/
  37. *.su
  38. *.idb
  39. *.pdb
  40. # Kernel Module Compile Results
  41. *.mod*
  42. *.cmd
  43. .tmp_versions/
  44. modules.order
  45. Module.symvers
  46. Mkfile.old
  47. dkms.conf
  48. ### C++ ###
  49. # Prerequisites
  50. # Compiled Object files
  51. *.slo
  52. # Precompiled Headers
  53. # Linker files
  54. # Debugger Files
  55. # Compiled Dynamic libraries
  56. # Fortran module files
  57. *.mod
  58. *.smod
  59. # Compiled Static libraries
  60. *.lai
  61. # Executables
  62. ### CMake ###
  63. CMakeLists.txt.user
  64. CMakeCache.txt
  65. CMakeFiles
  66. CMakeScripts
  67. Testing
  68. Makefile
  69. cmake_install.cmake
  70. install_manifest.txt
  71. compile_commands.json
  72. CTestTestfile.cmake
  73. _deps
  74. CMakeUserPresets.json
  75. ### CMake Patch ###
  76. # External projects
  77. *-prefix/
  78. ### Intellij+all ###
  79. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  80. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  81. # User-specific stuff
  82. .idea/**/workspace.xml
  83. .idea/**/tasks.xml
  84. .idea/**/usage.statistics.xml
  85. .idea/**/dictionaries
  86. .idea/**/shelf
  87. # Generated files
  88. .idea/**/contentModel.xml
  89. # Sensitive or high-churn files
  90. .idea/**/dataSources/
  91. .idea/**/dataSources.ids
  92. .idea/**/dataSources.local.xml
  93. .idea/**/sqlDataSources.xml
  94. .idea/**/dynamic.xml
  95. .idea/**/uiDesigner.xml
  96. .idea/**/dbnavigator.xml
  97. # Gradle
  98. .idea/**/gradle.xml
  99. .idea/**/libraries
  100. # Gradle and Maven with auto-import
  101. # When using Gradle or Maven with auto-import, you should exclude module files,
  102. # since they will be recreated, and may cause churn. Uncomment if using
  103. # auto-import.
  104. # .idea/artifacts
  105. # .idea/compiler.xml
  106. # .idea/jarRepositories.xml
  107. # .idea/modules.xml
  108. # .idea/*.iml
  109. # .idea/modules
  110. # *.iml
  111. # *.ipr
  112. # CMake
  113. cmake-build-*/
  114. # Mongo Explorer plugin
  115. .idea/**/mongoSettings.xml
  116. # File-based project format
  117. *.iws
  118. # IntelliJ
  119. out/
  120. # mpeltonen/sbt-idea plugin
  121. .idea_modules/
  122. # JIRA plugin
  123. atlassian-ide-plugin.xml
  124. # Cursive Clojure plugin
  125. .idea/replstate.xml
  126. # Crashlytics plugin (for Android Studio and IntelliJ)
  127. com_crashlytics_export_strings.xml
  128. crashlytics.properties
  129. crashlytics-build.properties
  130. fabric.properties
  131. # Editor-based Rest Client
  132. .idea/httpRequests
  133. # Android studio 3.1+ serialized cache file
  134. .idea/caches/build_file_checksums.ser
  135. ### Intellij+all Patch ###
  136. # Ignores the whole .idea folder and all .iml files
  137. # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
  138. .idea/
  139. # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
  140. *.iml
  141. modules.xml
  142. .idea/misc.xml
  143. *.ipr
  144. # Sonarlint plugin
  145. .idea/sonarlint
  146. ### VisualStudioCode ###
  147. .vscode/*
  148. !.vscode/tasks.json
  149. !.vscode/launch.json
  150. *.code-workspace
  151. ### VisualStudioCode Patch ###
  152. # Ignore all local history of files
  153. .history
  154. .ionide
  155. ### VisualStudio ###
  156. ## Ignore Visual Studio temporary files, build results, and
  157. ## files generated by popular Visual Studio add-ons.
  158. ##
  159. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  160. # User-specific files
  161. *.rsuser
  162. *.suo
  163. *.user
  164. *.userosscache
  165. *.sln.docstates
  166. # User-specific files (MonoDevelop/Xamarin Studio)
  167. *.userprefs
  168. # Mono auto generated files
  169. mono_crash.*
  170. # Build results
  171. [Dd]ebug/
  172. [Dd]ebugPublic/
  173. [Rr]elease/
  174. [Rr]eleases/
  175. x64/
  176. x86/
  177. [Ww][Ii][Nn]32/
  178. [Aa][Rr][Mm]/
  179. [Aa][Rr][Mm]64/
  180. bld/
  181. [Bb]in/
  182. [Oo]bj/
  183. [Ll]og/
  184. [Ll]ogs/
  185. # Visual Studio 2015/2017 cache/options directory
  186. .vs/
  187. # Uncomment if you have tasks that create the project's static files in wwwroot
  188. #wwwroot/
  189. # Visual Studio 2017 auto generated files
  190. Generated\ Files/
  191. # MSTest test Results
  192. [Tt]est[Rr]esult*/
  193. [Bb]uild[Ll]og.*
  194. # NUnit
  195. *.VisualState.xml
  196. TestResult.xml
  197. nunit-*.xml
  198. # Build Results of an ATL Project
  199. [Dd]ebugPS/
  200. [Rr]eleasePS/
  201. dlldata.c
  202. # Benchmark Results
  203. BenchmarkDotNet.Artifacts/
  204. # .NET Core
  205. project.lock.json
  206. project.fragment.lock.json
  207. artifacts/
  208. # ASP.NET Scaffolding
  209. ScaffoldingReadMe.txt
  210. # StyleCop
  211. StyleCopReport.xml
  212. # Files built by Visual Studio
  213. *_i.c
  214. *_p.c
  215. *_h.h
  216. *.meta
  217. *.iobj
  218. *.ipdb
  219. *.pgc
  220. *.pgd
  221. *.rsp
  222. *.sbr
  223. *.tlb
  224. *.tli
  225. *.tlh
  226. *.tmp
  227. *.tmp_proj
  228. *_wpftmp.csproj
  229. *.log
  230. *.vspscc
  231. *.vssscc
  232. .builds
  233. *.pidb
  234. *.svclog
  235. *.scc
  236. # Chutzpah Test files
  237. _Chutzpah*
  238. # Visual C++ cache files
  239. ipch/
  240. *.aps
  241. *.ncb
  242. *.opendb
  243. *.opensdf
  244. *.sdf
  245. *.cachefile
  246. *.VC.db
  247. *.VC.VC.opendb
  248. # Visual Studio profiler
  249. *.psess
  250. *.vsp
  251. *.vspx
  252. *.sap
  253. # Visual Studio Trace Files
  254. *.e2e
  255. # TFS 2012 Local Workspace
  256. $tf/
  257. # Guidance Automation Toolkit
  258. *.gpState
  259. # ReSharper is a .NET coding add-in
  260. _ReSharper*/
  261. *.[Rr]e[Ss]harper
  262. *.DotSettings.user
  263. # TeamCity is a build add-in
  264. _TeamCity*
  265. # DotCover is a Code Coverage Tool
  266. *.dotCover
  267. # AxoCover is a Code Coverage Tool
  268. .axoCover/*
  269. !.axoCover/settings.json
  270. # Coverlet is a free, cross platform Code Coverage Tool
  271. coverage*[.json, .xml, .info]
  272. # Visual Studio code coverage results
  273. *.coverage
  274. *.coveragexml
  275. # NCrunch
  276. _NCrunch_*
  277. .*crunch*.local.xml
  278. nCrunchTemp_*
  279. # MightyMoose
  280. *.mm.*
  281. AutoTest.Net/
  282. # Web workbench (sass)
  283. .sass-cache/
  284. # Installshield output folder
  285. [Ee]xpress/
  286. # DocProject is a documentation generator add-in
  287. DocProject/buildhelp/
  288. DocProject/Help/*.HxT
  289. DocProject/Help/*.HxC
  290. DocProject/Help/*.hhc
  291. DocProject/Help/*.hhk
  292. DocProject/Help/*.hhp
  293. DocProject/Help/Html2
  294. DocProject/Help/html
  295. # Click-Once directory
  296. publish/
  297. # Publish Web Output
  298. *.[Pp]ublish.xml
  299. *.azurePubxml
  300. # Note: Comment the next line if you want to checkin your web deploy settings,
  301. # but database connection strings (with potential passwords) will be unencrypted
  302. *.pubxml
  303. *.publishproj
  304. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  305. # checkin your Azure Web App publish settings, but sensitive information contained
  306. # in these scripts will be unencrypted
  307. PublishScripts/
  308. # NuGet Packages
  309. *.nupkg
  310. # NuGet Symbol Packages
  311. *.snupkg
  312. # The packages folder can be ignored because of Package Restore
  313. **/[Pp]ackages/*
  314. # except build/, which is used as an MSBuild target.
  315. !**/[Pp]ackages/build/
  316. # Uncomment if necessary however generally it will be regenerated when needed
  317. #!**/[Pp]ackages/repositories.config
  318. # NuGet v3's project.json files produces more ignorable files
  319. *.nuget.props
  320. *.nuget.targets
  321. # Microsoft Azure Build Output
  322. csx/
  323. *.build.csdef
  324. # Microsoft Azure Emulator
  325. ecf/
  326. rcf/
  327. # Windows Store app package directories and files
  328. AppPackages/
  329. BundleArtifacts/
  330. Package.StoreAssociation.xml
  331. _pkginfo.txt
  332. *.appx
  333. *.appxbundle
  334. *.appxupload
  335. # Visual Studio cache files
  336. # files ending in .cache can be ignored
  337. *.[Cc]ache
  338. # but keep track of directories ending in .cache
  339. !?*.[Cc]ache/
  340. # Others
  341. ClientBin/
  342. ~$*
  343. *~
  344. *.dbmdl
  345. *.dbproj.schemaview
  346. *.jfm
  347. *.pfx
  348. *.publishsettings
  349. orleans.codegen.cs
  350. # Including strong name files can present a security risk
  351. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  352. #*.snk
  353. # Since there are multiple workflows, uncomment next line to ignore bower_components
  354. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  355. #bower_components/
  356. # RIA/Silverlight projects
  357. Generated_Code/
  358. # Backup & report files from converting an old project file
  359. # to a newer Visual Studio version. Backup files are not needed,
  360. # because we have git ;-)
  361. _UpgradeReport_Files/
  362. Backup*/
  363. UpgradeLog*.XML
  364. UpgradeLog*.htm
  365. ServiceFabricBackup/
  366. *.rptproj.bak
  367. # SQL Server files
  368. *.mdf
  369. *.ldf
  370. *.ndf
  371. # Business Intelligence projects
  372. *.rdl.data
  373. *.bim.layout
  374. *.bim_*.settings
  375. *.rptproj.rsuser
  376. *- [Bb]ackup.rdl
  377. *- [Bb]ackup ([0-9]).rdl
  378. *- [Bb]ackup ([0-9][0-9]).rdl
  379. # Microsoft Fakes
  380. FakesAssemblies/
  381. # GhostDoc plugin setting file
  382. *.GhostDoc.xml
  383. # Node.js Tools for Visual Studio
  384. .ntvs_analysis.dat
  385. node_modules/
  386. # Visual Studio 6 build log
  387. *.plg
  388. # Visual Studio 6 workspace options file
  389. *.opt
  390. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  391. *.vbw
  392. # Visual Studio LightSwitch build output
  393. **/*.HTMLClient/GeneratedArtifacts
  394. **/*.DesktopClient/GeneratedArtifacts
  395. **/*.DesktopClient/ModelManifest.xml
  396. **/*.Server/GeneratedArtifacts
  397. **/*.Server/ModelManifest.xml
  398. _Pvt_Extensions
  399. # Paket dependency manager
  400. .paket/paket.exe
  401. paket-files/
  402. # FAKE - F# Make
  403. .fake/
  404. # CodeRush personal settings
  405. .cr/personal
  406. # Python Tools for Visual Studio (PTVS)
  407. __pycache__/
  408. *.pyc
  409. # Cake - Uncomment if you are using it
  410. # tools/**
  411. # !tools/packages.config
  412. # Tabs Studio
  413. *.tss
  414. # Telerik's JustMock configuration file
  415. *.jmconfig
  416. # BizTalk build output
  417. *.btp.cs
  418. *.btm.cs
  419. *.odx.cs
  420. *.xsd.cs
  421. # OpenCover UI analysis results
  422. OpenCover/
  423. # Azure Stream Analytics local run output
  424. ASALocalRun/
  425. # MSBuild Binary and Structured Log
  426. *.binlog
  427. # NVidia Nsight GPU debugger configuration file
  428. *.nvuser
  429. # MFractors (Xamarin productivity tool) working folder
  430. .mfractor/
  431. # Local History for Visual Studio
  432. .localhistory/
  433. # BeatPulse healthcheck temp database
  434. healthchecksdb
  435. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  436. MigrationBackup/
  437. # Ionide (cross platform F# VS Code tools) working folder
  438. .ionide/
  439. # Fody - auto-generated XML schema
  440. FodyWeavers.xsd
  441. ### VisualStudio Patch ###
  442. # Additional files built by Visual Studio
  443. *.tlog
  444. # End of https://www.toptal.com/developers/gitignore/api/intellij+all,visualstudio,visualstudiocode,cmake,c,c++