.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. # ---> WebStorm
  2. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  3. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  4. # User-specific stuff:
  5. .idea/**/workspace.xml
  6. .idea/**/tasks.xml
  7. .idea/dictionaries
  8. # Sensitive or high-churn files:
  9. .idea/**/dataSources/
  10. .idea/**/dataSources.ids
  11. .idea/**/dataSources.xml
  12. .idea/**/dataSources.local.xml
  13. .idea/**/sqlDataSources.xml
  14. .idea/**/dynamic.xml
  15. .idea/**/uiDesigner.xml
  16. # Gradle:
  17. .idea/**/gradle.xml
  18. .idea/**/libraries
  19. # CMake
  20. cmake-build-debug/
  21. # Mongo Explorer plugin:
  22. .idea/**/mongoSettings.xml
  23. ## File-based project format:
  24. *.iws
  25. ## Plugin-specific files:
  26. # IntelliJ
  27. /out/
  28. # mpeltonen/sbt-idea plugin
  29. .idea_modules/
  30. # JIRA plugin
  31. atlassian-ide-plugin.xml
  32. # Cursive Clojure plugin
  33. .idea/replstate.xml
  34. # Ruby plugin and RubyMine
  35. /.rakeTasks
  36. # Crashlytics plugin (for Android Studio and IntelliJ)
  37. com_crashlytics_export_strings.xml
  38. crashlytics.properties
  39. crashlytics-build.properties
  40. fabric.properties
  41. ### WebStorm Patch ###
  42. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  43. # *.iml
  44. # modules.xml
  45. # .idea/misc.xml
  46. # *.ipr
  47. # Sonarlint plugin
  48. .idea/sonarlint
  49. # ---> Windows
  50. # Windows image file caches
  51. Thumbs.db
  52. ehthumbs.db
  53. # Folder config file
  54. Desktop.ini
  55. # Recycle Bin used on file shares
  56. $RECYCLE.BIN/
  57. # Windows Installer files
  58. *.cab
  59. *.msi
  60. *.msm
  61. *.msp
  62. # Windows shortcuts
  63. *.lnk
  64. .idea
  65. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  66. # dependencies
  67. /node_modules
  68. /.pnp
  69. .pnp.js
  70. # testing
  71. /coverage
  72. # production
  73. /build
  74. # misc
  75. .DS_Store
  76. .env.local
  77. .env.development.local
  78. .env.test.local
  79. .env.production.local
  80. npm-debug.log*
  81. yarn-debug.log*
  82. yarn-error.log*