.gitignore 4.3 KB

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