.gitignore 2.0 KB

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