.gitignore 4.6 KB

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