.gitignore 2.1 KB

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