.gitignore 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ### JetBrains template
  2. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  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/**/usage.statistics.xml
  8. .idea/**/dictionaries
  9. .idea/**/shelf
  10. .idea
  11. # Generated files
  12. .idea/**/contentModel.xml
  13. # Sensitive or high-churn files
  14. .idea/**/dataSources/
  15. .idea/**/dataSources.ids
  16. .idea/**/dataSources.local.xml
  17. .idea/**/sqlDataSources.xml
  18. .idea/**/dynamic.xml
  19. .idea/**/uiDesigner.xml
  20. .idea/**/dbnavigator.xml
  21. # Gradle
  22. .idea/**/gradle.xml
  23. .idea/**/libraries
  24. # Gradle and Maven with auto-import
  25. # When using Gradle or Maven with auto-import, you should exclude module files,
  26. # since they will be recreated, and may cause churn. Uncomment if using
  27. # auto-import.
  28. # .idea/artifacts
  29. # .idea/compiler.xml
  30. # .idea/jarRepositories.xml
  31. # .idea/modules.xml
  32. # .idea/*.iml
  33. # .idea/modules
  34. # *.iml
  35. # *.ipr
  36. # CMake
  37. cmake-build-*/
  38. # Mongo Explorer plugin
  39. .idea/**/mongoSettings.xml
  40. # File-based project format
  41. *.iws
  42. # IntelliJ
  43. out/
  44. # mpeltonen/sbt-idea plugin
  45. .idea_modules/
  46. # JIRA plugin
  47. atlassian-ide-plugin.xml
  48. # Cursive Clojure plugin
  49. .idea/replstate.xml
  50. # Crashlytics plugin (for Android Studio and IntelliJ)
  51. com_crashlytics_export_strings.xml
  52. crashlytics.properties
  53. crashlytics-build.properties
  54. fabric.properties
  55. # Editor-based Rest Client
  56. .idea/httpRequests
  57. # Android studio 3.1+ serialized cache file
  58. .idea/caches/build_file_checksums.ser
  59. ### Go template
  60. # Binaries for programs and plugins
  61. *.exe
  62. *.exe~
  63. *.dll
  64. *.so
  65. *.dylib
  66. # Test binary, built with `go test -c`
  67. *.test
  68. # Output of the go coverage tool, specifically when used with LiteIDE
  69. *.out
  70. # Dependency directories (remove the comment below to include it)
  71. # vendor/