.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. #-------------------------
  2. # Operating Specific Junk Files
  3. #-------------------------
  4. # OS X
  5. .DS_Store
  6. .AppleDouble
  7. .LSOverride
  8. # OS X Thumbnails
  9. ._*
  10. # Windows image file caches
  11. Thumbs.db
  12. ehthumbs.db
  13. Desktop.ini
  14. # Recycle Bin used on file shares
  15. $RECYCLE.BIN/
  16. # Windows Installer files
  17. *.cab
  18. *.msi
  19. *.msm
  20. *.msp
  21. # Windows shortcuts
  22. *.lnk
  23. # Linux
  24. *~
  25. # KDE directory preferences
  26. .directory
  27. # Linux trash folder which might appear on any partition or disk
  28. .Trash-*
  29. #-------------------------
  30. # Environment Files
  31. #-------------------------
  32. # These should never be under version control,
  33. # as it poses a security risk.
  34. .env
  35. .vagrant
  36. Vagrantfile
  37. #-------------------------
  38. # Temporary Files
  39. #-------------------------
  40. writable/cache/*
  41. !writable/cache/index.html
  42. writable/logs/*
  43. !writable/logs/index.html
  44. writable/session/*
  45. !writable/session/index.html
  46. writable/uploads/*
  47. !writable/uploads/index.html
  48. writable/debugbar/*
  49. !writable/debugbar/.gitkeep
  50. php_errors.log
  51. #-------------------------
  52. # User Guide Temp Files
  53. #-------------------------
  54. user_guide_src/build/*
  55. user_guide_src/cilexer/build/*
  56. user_guide_src/cilexer/dist/*
  57. user_guide_src/cilexer/pycilexer.egg-info/*
  58. #-------------------------
  59. # Test Files
  60. #-------------------------
  61. tests/coverage*
  62. # Don't save phpunit under version control.
  63. phpunit
  64. #-------------------------
  65. # Composer
  66. #-------------------------
  67. vendor/
  68. #-------------------------
  69. # IDE / Development Files
  70. #-------------------------
  71. # Modules Testing
  72. _modules/*
  73. # phpenv local config
  74. .php-version
  75. # Jetbrains editors (PHPStorm, etc)
  76. .idea/
  77. *.iml
  78. # Netbeans
  79. nbproject/
  80. build/
  81. nbbuild/
  82. dist/
  83. nbdist/
  84. nbactions.xml
  85. nb-configuration.xml
  86. .nb-gradle/
  87. # Sublime Text
  88. *.tmlanguage.cache
  89. *.tmPreferences.cache
  90. *.stTheme.cache
  91. *.sublime-workspace
  92. *.sublime-project
  93. .phpintel
  94. /api/
  95. # Visual Studio Code
  96. .vscode/
  97. /results/
  98. /phpunit*.xml
  99. #-------------------------
  100. # Nodejs
  101. #-------------------------
  102. node_modules/
  103. # CodeIgniter Coding Standard
  104. .php-cs-fixer.cache