.gitignore 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. # Fichiers de configuration du projet
  2. libs/_settings.php
  3. # Created by .ignore support plugin (hsz.mobi)
  4. ### Composer template
  5. composer.phar
  6. composer.lock
  7. /vendor/
  8. # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
  9. # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
  10. # composer.lock
  11. ### Node template
  12. # Logs
  13. logs
  14. *.log
  15. npm-debug.log*
  16. yarn-debug.log*
  17. yarn-error.log*
  18. lerna-debug.log*
  19. # Diagnostic reports (https://nodejs.org/api/report.html)
  20. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  21. # Runtime data
  22. pids
  23. *.pid
  24. *.seed
  25. *.pid.lock
  26. # Directory for instrumented libs generated by jscoverage/JSCover
  27. lib-cov
  28. # Coverage directory used by tools like istanbul
  29. coverage
  30. *.lcov
  31. # nyc test coverage
  32. .nyc_output
  33. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  34. .grunt
  35. # Bower dependency directory (https://bower.io/)
  36. bower_components
  37. # node-waf configuration
  38. .lock-wscript
  39. # Compiled binary addons (https://nodejs.org/api/addons.html)
  40. build/Release
  41. # Dependency directories
  42. node_modules/
  43. jspm_packages/
  44. # Snowpack dependency directory (https://snowpack.dev/)
  45. web_modules/
  46. # TypeScript cache
  47. *.tsbuildinfo
  48. # Optional npm cache directory
  49. .npm
  50. # Optional eslint cache
  51. .eslintcache
  52. # Microbundle cache
  53. .rpt2_cache/
  54. .rts2_cache_cjs/
  55. .rts2_cache_es/
  56. .rts2_cache_umd/
  57. # Optional REPL history
  58. .node_repl_history
  59. # Output of 'npm pack'
  60. *.tgz
  61. # Yarn Integrity file
  62. .yarn-integrity
  63. # dotenv environment variables file
  64. .env
  65. .env.test
  66. # parcel-bundler cache (https://parceljs.org/)
  67. .cache
  68. .parcel-cache
  69. # Next.js build output
  70. .next
  71. out
  72. # Nuxt.js build / generate output
  73. .nuxt
  74. dist
  75. # Gatsby files
  76. .cache/
  77. # Comment in the public line in if your project uses Gatsby and not Next.js
  78. # https://nextjs.org/blog/next-9-1#public-directory-support
  79. # public
  80. # vuepress build output
  81. .vuepress/dist
  82. # Serverless directories
  83. .serverless/
  84. # FuseBox cache
  85. .fusebox/
  86. # DynamoDB Local files
  87. .dynamodb/
  88. # TernJS port file
  89. .tern-port
  90. # Stores VSCode versions used for testing VSCode extensions
  91. .vscode-test
  92. # yarn v2
  93. .yarn/cache
  94. .yarn/unplugged
  95. .yarn/build-state.yml
  96. .yarn/install-state.gz
  97. .pnp.*
  98. ### JetBrains template
  99. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  100. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  101. # User-specific stuff
  102. .idea/**/workspace.xml
  103. .idea/**/tasks.xml
  104. .idea/**/usage.statistics.xml
  105. .idea/**/dictionaries
  106. .idea/**/shelf
  107. *.iml
  108. .idea/
  109. # Generated files
  110. .idea/**/contentModel.xml
  111. # Sensitive or high-churn files
  112. .idea/**/dataSources/
  113. .idea/**/dataSources.ids
  114. .idea/**/dataSources.local.xml
  115. .idea/**/sqlDataSources.xml
  116. .idea/**/dynamic.xml
  117. .idea/**/uiDesigner.xml
  118. .idea/**/dbnavigator.xml
  119. # Gradle
  120. .idea/**/gradle.xml
  121. .idea/**/libraries
  122. # Gradle and Maven with auto-import
  123. # When using Gradle or Maven with auto-import, you should exclude module files,
  124. # since they will be recreated, and may cause churn. Uncomment if using
  125. # auto-import.
  126. # .idea/artifacts
  127. # .idea/compiler.xml
  128. # .idea/jarRepositories.xml
  129. # .idea/modules.xml
  130. # .idea/*.iml
  131. # .idea/modules
  132. # *.iml
  133. # *.ipr
  134. # CMake
  135. cmake-build-*/
  136. # Mongo Explorer plugin
  137. .idea/**/mongoSettings.xml
  138. # File-based project format
  139. *.iws
  140. # IntelliJ
  141. out/
  142. # mpeltonen/sbt-idea plugin
  143. .idea_modules/
  144. # JIRA plugin
  145. atlassian-ide-plugin.xml
  146. # Cursive Clojure plugin
  147. .idea/replstate.xml
  148. # Crashlytics plugin (for Android Studio and IntelliJ)
  149. com_crashlytics_export_strings.xml
  150. crashlytics.properties
  151. crashlytics-build.properties
  152. fabric.properties
  153. # Editor-based Rest Client
  154. .idea/httpRequests
  155. # Android studio 3.1+ serialized cache file
  156. .idea/caches/build_file_checksums.ser
  157. ### Sass template
  158. .sass-cache/
  159. *.css.map
  160. *.sass.map
  161. *.scss.map