Advertisement
mstranieri

gitignore artissima

Jan 31st, 2020
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.84 KB | None | 0 0
  1. wp-content/plugins/*
  2. wp-content/uploads/*
  3. wp-content/plugins/*
  4. wp-config.php
  5. .*
  6. !.gitignore
  7. !readme.md
  8. ~*
  9. ehthumbs.db
  10. Thumbs.db
  11. __MACOSX
  12. *.sublime-project
  13. *.sublime-workspace
  14. *.komodoproject
  15. *.log
  16. *.sql
  17. *.sqlite
  18. *.com
  19. *.class
  20. *.dll
  21. *.exe
  22. *.o
  23. *.so
  24. *.7z
  25. *.dmg
  26. *.gz
  27. *.iso
  28. *.jar
  29. *.rar
  30. *.tar
  31. *.zip
  32. wp-content/plugins/hello.php
  33. wp-content/plugins/akismet/
  34. wp-content/themes/twenty*/
  35. node_modules/
  36. =======
  37. # ignore everything in the root except the "wp-content" directory.
  38. !wp-content/
  39.  
  40. # ignore everything in the "wp-content" directory, except:
  41. # "mu-plugins", "plugins", "themes" directory
  42. wp-content/*
  43. !wp-content/mu-plugins/
  44. !wp-content/plugins/
  45. !wp-content/themes/
  46.  
  47. # ignore these plugins
  48. wp-content/plugins/hello.php
  49.  
  50. # ignore specific themes
  51. wp-content/themes/twenty*/
  52.  
  53. # ignore node dependency directories
  54. node_modules/
  55.  
  56. # ignore log files and databases
  57. *.log
  58. *.sql
  59. *.sqlite
  60.  
  61.  
  62.  
  63.  
  64.  
  65. .vscode/*
  66. !.vscode/settings.json
  67. !.vscode/tasks.json
  68. !.vscode/launch.json
  69. !.vscode/extensions.json
  70.  
  71.  
  72.  
  73.  
  74. # Created by https://www.gitignore.io/api/phpstorm
  75. # Edit at https://www.gitignore.io/?templates=phpstorm
  76.  
  77. ### PhpStorm ###
  78. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  79. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  80.  
  81. # User-specific stuff
  82. .idea/**/workspace.xml
  83. .idea/**/tasks.xml
  84. .idea/**/usage.statistics.xml
  85. .idea/**/dictionaries
  86. .idea/**/shelf
  87.  
  88. # Generated files
  89. .idea/**/contentModel.xml
  90.  
  91. # Sensitive or high-churn files
  92. .idea/**/dataSources/
  93. .idea/**/dataSources.ids
  94. .idea/**/dataSources.local.xml
  95. .idea/**/sqlDataSources.xml
  96. .idea/**/dynamic.xml
  97. .idea/**/uiDesigner.xml
  98. .idea/**/dbnavigator.xml
  99.  
  100. # Gradle
  101. .idea/**/gradle.xml
  102. .idea/**/libraries
  103.  
  104. # Gradle and Maven with auto-import
  105. # When using Gradle or Maven with auto-import, you should exclude module files,
  106. # since they will be recreated, and may cause churn.  Uncomment if using
  107. # auto-import.
  108. # .idea/modules.xml
  109. # .idea/*.iml
  110. # .idea/modules
  111. # *.iml
  112. # *.ipr
  113.  
  114. # CMake
  115. cmake-build-*/
  116.  
  117. # Mongo Explorer plugin
  118. .idea/**/mongoSettings.xml
  119.  
  120. # File-based project format
  121. *.iws
  122.  
  123. # IntelliJ
  124. out/
  125.  
  126. # mpeltonen/sbt-idea plugin
  127. .idea_modules/
  128.  
  129. # JIRA plugin
  130. atlassian-ide-plugin.xml
  131.  
  132. # Cursive Clojure plugin
  133. .idea/replstate.xml
  134.  
  135. # Crashlytics plugin (for Android Studio and IntelliJ)
  136. com_crashlytics_export_strings.xml
  137. crashlytics.properties
  138. crashlytics-build.properties
  139. fabric.properties
  140.  
  141. # Editor-based Rest Client
  142. .idea/httpRequests
  143.  
  144. # Android studio 3.1+ serialized cache file
  145. .idea/caches/build_file_checksums.ser
  146.  
  147. ### PhpStorm Patch ###
  148. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  149.  
  150. # *.iml
  151. # modules.xml
  152. # .idea/misc.xml
  153. # *.ipr
  154.  
  155. # Sonarlint plugin
  156. .idea/sonarlint
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement