.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. #################
  2. ## SparkFun Useful stuff
  3. #################
  4. ## AVR Development
  5. *.eep
  6. *.elf
  7. *.lst
  8. *.lss
  9. *.sym
  10. *.d
  11. *.o
  12. *.srec
  13. *.map
  14. ## Notepad++ backup files
  15. *.bak
  16. ## BOM files
  17. *bom*
  18. #################
  19. ## Eclipse
  20. #################
  21. *.pydevproject
  22. .project
  23. .metadata
  24. bin/
  25. tmp/
  26. *.tmp
  27. *.bak
  28. *.swp
  29. *~.nib
  30. local.properties
  31. .classpath
  32. .settings/
  33. .loadpath
  34. # External tool builders
  35. .externalToolBuilders/
  36. # Locally stored "Eclipse launch configurations"
  37. *.launch
  38. # CDT-specific
  39. .cproject
  40. # PDT-specific
  41. .buildpath
  42. #############
  43. ## Eagle
  44. #############
  45. # Ignore the board and schematic backup files
  46. *.b#?
  47. *.s#?
  48. #################
  49. ## Visual Studio
  50. #################
  51. ## Ignore Visual Studio temporary files, build results, and
  52. ## files generated by popular Visual Studio add-ons.
  53. # User-specific files
  54. *.suo
  55. *.user
  56. *.sln.docstates
  57. # Build results
  58. [Dd]ebug/
  59. [Rr]elease/
  60. *_i.c
  61. *_p.c
  62. *.ilk
  63. *.meta
  64. *.obj
  65. *.pch
  66. *.pdb
  67. *.pgc
  68. *.pgd
  69. *.rsp
  70. *.sbr
  71. *.tlb
  72. *.tli
  73. *.tlh
  74. *.tmp
  75. *.vspscc
  76. .builds
  77. *.dotCover
  78. ## TODO: If you have NuGet Package Restore enabled, uncomment this
  79. #packages/
  80. # Visual C++ cache files
  81. ipch/
  82. *.aps
  83. *.ncb
  84. *.opensdf
  85. *.sdf
  86. # Visual Studio profiler
  87. *.psess
  88. *.vsp
  89. # ReSharper is a .NET coding add-in
  90. _ReSharper*
  91. # Installshield output folder
  92. [Ee]xpress
  93. # DocProject is a documentation generator add-in
  94. DocProject/buildhelp/
  95. DocProject/Help/*.HxT
  96. DocProject/Help/*.HxC
  97. DocProject/Help/*.hhc
  98. DocProject/Help/*.hhk
  99. DocProject/Help/*.hhp
  100. DocProject/Help/Html2
  101. DocProject/Help/html
  102. # Click-Once directory
  103. publish
  104. # Others
  105. [Bb]in
  106. [Oo]bj
  107. sql
  108. TestResults
  109. *.Cache
  110. ClientBin
  111. stylecop.*
  112. ~$*
  113. *.dbmdl
  114. Generated_Code #added for RIA/Silverlight projects
  115. # Backup & report files from converting an old project file to a newer
  116. # Visual Studio version. Backup files are not needed, because we have git ;-)
  117. _UpgradeReport_Files/
  118. Backup*/
  119. UpgradeLog*.XML
  120. ############
  121. ## Windows
  122. ############
  123. # Windows image file caches
  124. Thumbs.db
  125. # Folder config file
  126. Desktop.ini
  127. #############
  128. ## Python
  129. #############
  130. *.py[co]
  131. # Packages
  132. *.egg
  133. *.egg-info
  134. dist
  135. build
  136. eggs
  137. parts
  138. bin
  139. var
  140. sdist
  141. develop-eggs
  142. .installed.cfg
  143. # Installer logs
  144. pip-log.txt
  145. # Unit test / coverage reports
  146. .coverage
  147. .tox
  148. #Translations
  149. *.mo
  150. #Mr Developer
  151. .mr.developer.cfg
  152. # Mac crap
  153. .DS_Store