.gitignore 2.0 KB

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