.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. # Env Variable
  2. .env
  3. /vendor
  4. # ---> Windows
  5. # Windows image file caches
  6. Thumbs.db
  7. ehthumbs.db
  8. public/assets
  9. # Folder config file
  10. Desktop.ini
  11. # Recycle Bin used on file shares
  12. $RECYCLE.BIN/
  13. # Windows Installer files
  14. *.cab
  15. *.msi
  16. *.msm
  17. *.msp
  18. # Windows shortcuts
  19. *.lnk
  20. # ---> Linux
  21. *~
  22. # KDE directory preferences
  23. .directory
  24. # Linux trash folder which might appear on any partition or disk
  25. .Trash-*
  26. # ---> macOS
  27. .DS_Store
  28. .AppleDouble
  29. .LSOverride
  30. # Icon must end with two \r
  31. Icon
  32. # Thumbnails
  33. ._*
  34. # Files that might appear in the root of a volume
  35. .DocumentRevisions-V100
  36. .fseventsd
  37. .Spotlight-V100
  38. .TemporaryItems
  39. .Trashes
  40. .VolumeIcon.icns
  41. # Directories potentially created on remote AFP share
  42. .AppleDB
  43. .AppleDesktop
  44. Network Trash Folder
  45. Temporary Items
  46. .apdisk
  47. # ---> SublimeText
  48. # cache files for sublime text
  49. *.tmlanguage.cache
  50. *.tmPreferences.cache
  51. *.stTheme.cache
  52. # workspace files are user-specific
  53. *.sublime-workspace
  54. # project files should be checked into the repository, unless a significant
  55. # proportion of contributors will probably not be using SublimeText
  56. # *.sublime-project
  57. # sftp configuration file
  58. sftp-config.json
  59. # ---> VisualStudioCode
  60. .settings
  61. # ---> Composer
  62. composer.phar
  63. vendor/
  64. *.lock
  65. # Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
  66. # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
  67. # composer.lock
  68. # ---> Laravel
  69. /bootstrap/compiled.php
  70. .env.*.php
  71. .env.php
  72. .env
  73. # ---> Node
  74. # Logs
  75. logs
  76. *.log
  77. npm-debug.log*
  78. # Runtime data
  79. pids
  80. *.pid
  81. *.seed
  82. # Directory for instrumented libs generated by jscoverage/JSCover
  83. lib-cov
  84. # Coverage directory used by tools like istanbul
  85. coverage
  86. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  87. .grunt
  88. # node-waf configuration
  89. .lock-wscript
  90. # Compiled binary addons (http://nodejs.org/api/addons.html)
  91. build/Release
  92. # Dependency directory
  93. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  94. node_modules
  95. # ---> VirtualEnv
  96. # Virtualenv
  97. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  98. .Python
  99. [Bb]in
  100. [Ii]nclude
  101. [Ll]ib
  102. [Ll]ocal
  103. [Ss]cripts
  104. pyvenv.cfg
  105. pip-selfcheck.json
  106. .history