.gitignore 5.4 KB

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