.gitignore 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. ### Java template
  2. # Compiled class file
  3. *.class
  4. # Log file
  5. *.log
  6. # BlueJ files
  7. *.ctxt
  8. # Mobile Tools for Java (J2ME)
  9. .mtj.tmp/
  10. # Package Files #
  11. *.jar
  12. *.war
  13. *.nar
  14. *.ear
  15. *.zip
  16. *.tar.gz
  17. *.rar
  18. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  19. hs_err_pid*
  20. ### Maven template
  21. target/
  22. pom.xml.tag
  23. pom.xml.releaseBackup
  24. pom.xml.versionsBackup
  25. pom.xml.next
  26. release.properties
  27. dependency-reduced-pom.xml
  28. buildNumber.properties
  29. .mvn/timing.properties
  30. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  31. .mvn/wrapper/maven-wrapper.jar
  32. ### VisualStudioCode template
  33. .vscode/*
  34. !.vscode/settings.json
  35. !.vscode/tasks.json
  36. !.vscode/launch.json
  37. !.vscode/extensions.json
  38. *.code-workspace
  39. # Local History for Visual Studio Code
  40. .history/
  41. ### JetBrains template
  42. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  43. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  44. # User-specific stuff
  45. .idea/**/workspace.xml
  46. .idea/**/tasks.xml
  47. .idea/**/usage.statistics.xml
  48. .idea/**/dictionaries
  49. .idea/**/shelf
  50. # Generated files
  51. .idea/**/contentModel.xml
  52. # Sensitive or high-churn files
  53. .idea/**/dataSources/
  54. .idea/**/dataSources.ids
  55. .idea/**/dataSources.local.xml
  56. .idea/**/sqlDataSources.xml
  57. .idea/**/dynamic.xml
  58. .idea/**/uiDesigner.xml
  59. .idea/**/dbnavigator.xml
  60. # Gradle
  61. .idea/**/gradle.xml
  62. .idea/**/libraries
  63. # Gradle and Maven with auto-import
  64. # When using Gradle or Maven with auto-import, you should exclude module files,
  65. # since they will be recreated, and may cause churn. Uncomment if using
  66. # auto-import.
  67. # .idea/artifacts
  68. # .idea/compiler.xml
  69. # .idea/jarRepositories.xml
  70. # .idea/modules.xml
  71. # .idea/*.iml
  72. # .idea/modules
  73. # *.iml
  74. # *.ipr
  75. # CMake
  76. cmake-build-*/
  77. # Mongo Explorer plugin
  78. .idea/**/mongoSettings.xml
  79. # File-based project format
  80. *.iws
  81. # IntelliJ
  82. out/
  83. # mpeltonen/sbt-idea plugin
  84. .idea_modules/
  85. # JIRA plugin
  86. atlassian-ide-plugin.xml
  87. # Cursive Clojure plugin
  88. .idea/replstate.xml
  89. # Crashlytics plugin (for Android Studio and IntelliJ)
  90. com_crashlytics_export_strings.xml
  91. crashlytics.properties
  92. crashlytics-build.properties
  93. fabric.properties
  94. # Editor-based Rest Client
  95. .idea/httpRequests
  96. # Android studio 3.1+ serialized cache file
  97. .idea/caches/build_file_checksums.ser
  98. ### Eclipse template
  99. .metadata
  100. bin/
  101. tmp/
  102. *.tmp
  103. *.bak
  104. *.swp
  105. *~.nib
  106. local.properties
  107. .settings/
  108. .loadpath
  109. .recommenders
  110. # External tool builders
  111. .externalToolBuilders/
  112. # Locally stored "Eclipse launch configurations"
  113. *.launch
  114. # PyDev specific (Python IDE for Eclipse)
  115. *.pydevproject
  116. # CDT-specific (C/C++ Development Tooling)
  117. .cproject
  118. # CDT- autotools
  119. .autotools
  120. # Java annotation processor (APT)
  121. .factorypath
  122. # PDT-specific (PHP Development Tools)
  123. .buildpath
  124. # sbteclipse plugin
  125. .target
  126. # Tern plugin
  127. .tern-project
  128. # TeXlipse plugin
  129. .texlipse
  130. # STS (Spring Tool Suite)
  131. .springBeans
  132. # Code Recommenders
  133. .recommenders/
  134. # Annotation Processing
  135. .apt_generated/
  136. .apt_generated_test/
  137. # Scala IDE specific (Scala & Java development for Eclipse)
  138. .cache-main
  139. .scala_dependencies
  140. .worksheet
  141. # Uncomment this line if you wish to ignore the project description file.
  142. # Typically, this file would be tracked if it contains build/dependency configurations:
  143. #.project
  144. ### Example user template template
  145. ### Example user template
  146. # IntelliJ project files
  147. .idea
  148. *.iml
  149. out
  150. gen
  151. ### VisualStudio template
  152. ## Ignore Visual Studio temporary files, build results, and
  153. ## files generated by popular Visual Studio add-ons.
  154. ##
  155. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  156. # User-specific files
  157. *.rsuser
  158. *.suo
  159. *.user
  160. *.userosscache
  161. *.sln.docstates
  162. # User-specific files (MonoDevelop/Xamarin Studio)
  163. *.userprefs
  164. # Mono auto generated files
  165. mono_crash.*
  166. # Build results
  167. [Dd]ebug/
  168. [Dd]ebugPublic/
  169. [Rr]elease/
  170. [Rr]eleases/
  171. x64/
  172. x86/
  173. [Ww][Ii][Nn]32/
  174. [Aa][Rr][Mm]/
  175. [Aa][Rr][Mm]64/
  176. bld/
  177. [Bb]in/
  178. [Oo]bj/
  179. [Ll]og/
  180. [Ll]ogs/
  181. # Visual Studio 2015/2017 cache/options directory
  182. .vs/
  183. # Uncomment if you have tasks that create the project's static files in wwwroot
  184. #wwwroot/
  185. # Visual Studio 2017 auto generated files
  186. Generated\ Files/
  187. # MSTest test Results
  188. [Tt]est[Rr]esult*/
  189. [Bb]uild[Ll]og.*
  190. # NUnit
  191. *.VisualState.xml
  192. TestResult.xml
  193. nunit-*.xml
  194. # Build Results of an ATL Project
  195. [Dd]ebugPS/
  196. [Rr]eleasePS/
  197. dlldata.c
  198. # Benchmark Results
  199. BenchmarkDotNet.Artifacts/
  200. # .NET Core
  201. project.lock.json
  202. project.fragment.lock.json
  203. artifacts/
  204. # ASP.NET Scaffolding
  205. ScaffoldingReadMe.txt
  206. # StyleCop
  207. StyleCopReport.xml
  208. # Files built by Visual Studio
  209. *_i.c
  210. *_p.c
  211. *_h.h
  212. *.ilk
  213. *.meta
  214. *.obj
  215. *.iobj
  216. *.pch
  217. *.pdb
  218. *.ipdb
  219. *.pgc
  220. *.pgd
  221. *.rsp
  222. *.sbr
  223. *.tlb
  224. *.tli
  225. *.tlh
  226. *.tmp_proj
  227. *_wpftmp.csproj
  228. *.vspscc
  229. *.vssscc
  230. .builds
  231. *.pidb
  232. *.svclog
  233. *.scc
  234. # Chutzpah Test files
  235. _Chutzpah*
  236. # Visual C++ cache files
  237. ipch/
  238. *.aps
  239. *.ncb
  240. *.opendb
  241. *.opensdf
  242. *.sdf
  243. *.cachefile
  244. *.VC.db
  245. *.VC.VC.opendb
  246. # Visual Studio profiler
  247. *.psess
  248. *.vsp
  249. *.vspx
  250. *.sap
  251. # Visual Studio Trace Files
  252. *.e2e
  253. # TFS 2012 Local Workspace
  254. $tf/
  255. # Guidance Automation Toolkit
  256. *.gpState
  257. # ReSharper is a .NET coding add-in
  258. _ReSharper*/
  259. *.[Rr]e[Ss]harper
  260. *.DotSettings.user
  261. # TeamCity is a build add-in
  262. _TeamCity*
  263. # DotCover is a Code Coverage Tool
  264. *.dotCover
  265. # AxoCover is a Code Coverage Tool
  266. .axoCover/*
  267. !.axoCover/settings.json
  268. # Coverlet is a free, cross platform Code Coverage Tool
  269. coverage*.json
  270. coverage*.xml
  271. coverage*.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