.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # Created by https://www.gitignore.io/api/go,windows,jetbrains
  2. ### Go ###
  3. # Binaries for programs and plugins
  4. *.exe
  5. *.exe~
  6. *.dll
  7. *.so
  8. *.dylib
  9. # Test binary, build with `go test -c`
  10. *.test
  11. # Output of the go coverage tool, specifically when used with LiteIDE
  12. *.out
  13. ### Go Patch ###
  14. /vendor/
  15. /Godeps/
  16. ### JetBrains ###
  17. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  18. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  19. # User-specific stuff
  20. .idea/**/workspace.xml
  21. .idea/**/tasks.xml
  22. .idea/**/usage.statistics.xml
  23. .idea/**/dictionaries
  24. .idea/**/shelf
  25. # Sensitive or high-churn files
  26. .idea/**/dataSources/
  27. .idea/**/dataSources.ids
  28. .idea/**/dataSources.local.xml
  29. .idea/**/sqlDataSources.xml
  30. .idea/**/dynamic.xml
  31. .idea/**/uiDesigner.xml
  32. .idea/**/dbnavigator.xml
  33. # Gradle
  34. .idea/**/gradle.xml
  35. .idea/**/libraries
  36. # Gradle and Maven with auto-import
  37. # When using Gradle or Maven with auto-import, you should exclude module files,
  38. # since they will be recreated, and may cause churn. Uncomment if using
  39. # auto-import.
  40. # .idea/modules.xml
  41. # .idea/*.iml
  42. # .idea/modules
  43. # CMake
  44. cmake-build-*/
  45. # Mongo Explorer plugin
  46. .idea/**/mongoSettings.xml
  47. # File-based project format
  48. *.iws
  49. # IntelliJ
  50. out/
  51. # mpeltonen/sbt-idea plugin
  52. .idea_modules/
  53. # JIRA plugin
  54. atlassian-ide-plugin.xml
  55. # Cursive Clojure plugin
  56. .idea/replstate.xml
  57. # Crashlytics plugin (for Android Studio and IntelliJ)
  58. com_crashlytics_export_strings.xml
  59. crashlytics.properties
  60. crashlytics-build.properties
  61. fabric.properties
  62. # Editor-based Rest Client
  63. .idea/httpRequests
  64. ### JetBrains Patch ###
  65. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  66. # *.iml
  67. # modules.xml
  68. # .idea/misc.xml
  69. # *.ipr
  70. # Sonarlint plugin
  71. .idea/sonarlint
  72. ### Windows ###
  73. # Windows thumbnail cache files
  74. Thumbs.db
  75. ehthumbs.db
  76. ehthumbs_vista.db
  77. # Dump file
  78. *.stackdump
  79. # Folder config file
  80. [Dd]esktop.ini
  81. # Recycle Bin used on file shares
  82. $RECYCLE.BIN/
  83. # Windows Installer files
  84. *.cab
  85. *.msi
  86. *.msix
  87. *.msm
  88. *.msp
  89. # Windows shortcuts
  90. *.lnk
  91. .vscode
  92. # End of https://www.gitignore.io/api/go,windows,jetbrains