.gitignore 1.9 KB

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