.gitignore 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. # ---> Vim
  2. [._]*.s[a-w][a-z]
  3. [._]s[a-w][a-z]
  4. *.un~
  5. Session.vim
  6. .netrwhist
  7. *~
  8. # ---> KiCAD
  9. # For PCBs designed using KiCAD: http://www.kicad-pcb.org/
  10. # Temporary files
  11. *.000
  12. *.bak
  13. *.bck
  14. *.kicad_pcb-bak
  15. *.zip
  16. # Netlist files (exported from Eeschema)
  17. *.net
  18. # Autorouter files (exported from Pcbnew)
  19. .dsn
  20. # ---> C
  21. # Object files
  22. *.o
  23. *.ko
  24. *.obj
  25. *.elf
  26. # Precompiled Headers
  27. *.gch
  28. *.pch
  29. # Libraries
  30. *.lib
  31. *.a
  32. *.la
  33. *.lo
  34. # Shared objects (inc. Windows DLLs)
  35. *.dll
  36. *.so
  37. *.so.*
  38. *.dylib
  39. # Executables
  40. *.exe
  41. *.out
  42. *.app
  43. *.i*86
  44. *.x86_64
  45. *.hex
  46. # Debug files
  47. *.dSYM/
  48. # ---> C++
  49. # Compiled Object files
  50. *.slo
  51. *.lo
  52. *.o
  53. *.obj
  54. # Precompiled Headers
  55. *.gch
  56. *.pch
  57. # Compiled Dynamic libraries
  58. *.so
  59. *.dylib
  60. *.dll
  61. # Fortran module files
  62. *.mod
  63. # Compiled Static libraries
  64. *.lai
  65. *.la
  66. *.a
  67. *.lib
  68. # Executables
  69. *.exe
  70. *.out
  71. *.app
  72. # ---> VisualStudio
  73. ## Ignore Visual Studio temporary files, build results, and
  74. ## files generated by popular Visual Studio add-ons.
  75. # User-specific files
  76. *.suo
  77. *.user
  78. *.userosscache
  79. *.sln.docstates
  80. # User-specific files (MonoDevelop/Xamarin Studio)
  81. *.userprefs
  82. # Build results
  83. [Dd]ebug/
  84. [Dd]ebugPublic/
  85. [Rr]elease/
  86. [Rr]eleases/
  87. x64/
  88. x86/
  89. build/
  90. bld/
  91. [Bb]in/
  92. [Oo]bj/
  93. # Visual Studio 2015 cache/options directory
  94. .vs/
  95. # Uncomment if you have tasks that create the project's static files in wwwroot
  96. #wwwroot/
  97. # MSTest test Results
  98. [Tt]est[Rr]esult*/
  99. [Bb]uild[Ll]og.*
  100. # NUNIT
  101. *.VisualState.xml
  102. TestResult.xml
  103. # Build Results of an ATL Project
  104. [Dd]ebugPS/
  105. [Rr]eleasePS/
  106. dlldata.c
  107. # DNX
  108. project.lock.json
  109. artifacts/
  110. *_i.c
  111. *_p.c
  112. *_i.h
  113. *.ilk
  114. *.meta
  115. *.obj
  116. *.pch
  117. *.pdb
  118. *.pgc
  119. *.pgd
  120. *.rsp
  121. *.sbr
  122. *.tlb
  123. *.tli
  124. *.tlh
  125. *.tmp
  126. *.tmp_proj
  127. *.log
  128. *.vspscc
  129. *.vssscc
  130. .builds
  131. *.pidb
  132. *.svclog
  133. *.scc
  134. # Chutzpah Test files
  135. _Chutzpah*
  136. # Visual C++ cache files
  137. ipch/
  138. *.aps
  139. *.ncb
  140. *.opensdf
  141. *.sdf
  142. *.cachefile
  143. # Visual Studio profiler
  144. *.psess
  145. *.vsp
  146. *.vspx
  147. *.sap
  148. # TFS 2012 Local Workspace
  149. $tf/
  150. # Guidance Automation Toolkit
  151. *.gpState
  152. # ReSharper is a .NET coding add-in
  153. _ReSharper*/
  154. *.[Rr]e[Ss]harper
  155. *.DotSettings.user
  156. # JustCode is a .NET coding add-in
  157. .JustCode
  158. # TeamCity is a build add-in
  159. _TeamCity*
  160. # DotCover is a Code Coverage Tool
  161. *.dotCover
  162. # NCrunch
  163. _NCrunch_*
  164. .*crunch*.local.xml
  165. nCrunchTemp_*
  166. # MightyMoose
  167. *.mm.*
  168. AutoTest.Net/
  169. # Web workbench (sass)
  170. .sass-cache/
  171. # Installshield output folder
  172. [Ee]xpress/
  173. # DocProject is a documentation generator add-in
  174. DocProject/buildhelp/
  175. DocProject/Help/*.HxT
  176. DocProject/Help/*.HxC
  177. DocProject/Help/*.hhc
  178. DocProject/Help/*.hhk
  179. DocProject/Help/*.hhp
  180. DocProject/Help/Html2
  181. DocProject/Help/html
  182. # Click-Once directory
  183. publish/
  184. # Publish Web Output
  185. *.[Pp]ublish.xml
  186. *.azurePubxml
  187. # TODO: Comment the next line if you want to checkin your web deploy settings
  188. # but database connection strings (with potential passwords) will be unencrypted
  189. *.pubxml
  190. *.publishproj
  191. # NuGet Packages
  192. *.nupkg
  193. # The packages folder can be ignored because of Package Restore
  194. **/packages/*
  195. # except build/, which is used as an MSBuild target.
  196. !**/packages/build/
  197. # Uncomment if necessary however generally it will be regenerated when needed
  198. #!**/packages/repositories.config
  199. # Windows Azure Build Output
  200. csx/
  201. *.build.csdef
  202. # Windows Store app package directory
  203. AppPackages/
  204. # Visual Studio cache files
  205. # files ending in .cache can be ignored
  206. *.[Cc]ache
  207. # but keep track of directories ending in .cache
  208. !*.[Cc]ache/
  209. # Others
  210. ClientBin/
  211. [Ss]tyle[Cc]op.*
  212. ~$*
  213. *~
  214. *.dbmdl
  215. *.dbproj.schemaview
  216. *.pfx
  217. *.publishsettings
  218. node_modules/
  219. orleans.codegen.cs
  220. # RIA/Silverlight projects
  221. Generated_Code/
  222. # Backup & report files from converting an old project file
  223. # to a newer Visual Studio version. Backup files are not needed,
  224. # because we have git ;-)
  225. _UpgradeReport_Files/
  226. Backup*/
  227. UpgradeLog*.XML
  228. UpgradeLog*.htm
  229. # SQL Server files
  230. *.mdf
  231. *.ldf
  232. # Business Intelligence projects
  233. *.rdl.data
  234. *.bim.layout
  235. *.bim_*.settings
  236. # Microsoft Fakes
  237. FakesAssemblies/
  238. # Node.js Tools for Visual Studio
  239. .ntvs_analysis.dat
  240. # Visual Studio 6 build log
  241. *.plg
  242. # Visual Studio 6 workspace options file
  243. *.opt
  244. # Visual Studio LightSwitch build output
  245. **/*.HTMLClient/GeneratedArtifacts
  246. **/*.DesktopClient/GeneratedArtifacts
  247. **/*.DesktopClient/ModelManifest.xml
  248. **/*.Server/GeneratedArtifacts
  249. **/*.Server/ModelManifest.xml
  250. _Pvt_Extensions
  251. # ---> VirtualEnv
  252. # Virtualenv
  253. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  254. .Python
  255. [Bb]in
  256. [Ii]nclude
  257. [Ll]ib
  258. [Ll]ocal
  259. [Ss]cripts
  260. pyvenv.cfg
  261. pip-selfcheck.json
  262. # ---> VisualStudioCode
  263. .settings