.gitignore 3.8 KB

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