.gitignore 5.0 KB

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