.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .DS_Store
  2. ### Linux template
  3. *~
  4. # temporary files which can be created if a process still has a handle open of a deleted file
  5. .fuse_hidden*
  6. # KDE directory preferences
  7. .directory
  8. # Linux trash folder which might appear on any partition or disk
  9. .Trash-*
  10. # .nfs files are created when an open file is removed but is still being accessed
  11. .nfs*
  12. ### JetBrains template
  13. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  14. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  15. # User-specific stuff
  16. .idea/**/workspace.xml
  17. .idea/**/tasks.xml
  18. .idea/**/usage.statistics.xml
  19. .idea/**/dictionaries
  20. .idea/**/shelf
  21. # Generated files
  22. .idea/**/contentModel.xml
  23. # Sensitive or high-churn files
  24. .idea/**/dataSources/
  25. .idea/**/dataSources.ids
  26. .idea/**/dataSources.local.xml
  27. .idea/**/sqlDataSources.xml
  28. .idea/**/dynamic.xml
  29. .idea/**/uiDesigner.xml
  30. .idea/**/dbnavigator.xml
  31. # Gradle
  32. .idea/**/gradle.xml
  33. .idea/**/libraries
  34. # Gradle and Maven with auto-import
  35. # When using Gradle or Maven with auto-import, you should exclude module files,
  36. # since they will be recreated, and may cause churn. Uncomment if using
  37. # auto-import.
  38. # .idea/artifacts
  39. # .idea/compiler.xml
  40. # .idea/jarRepositories.xml
  41. # .idea/modules.xml
  42. # .idea/*.iml
  43. # .idea/modules
  44. # *.iml
  45. # *.ipr
  46. # CMake
  47. cmake-build-*/
  48. # Mongo Explorer plugin
  49. .idea/**/mongoSettings.xml
  50. # File-based project format
  51. *.iws
  52. # IntelliJ
  53. out/
  54. # mpeltonen/sbt-idea plugin
  55. .idea_modules/
  56. # JIRA plugin
  57. atlassian-ide-plugin.xml
  58. # Cursive Clojure plugin
  59. .idea/replstate.xml
  60. # Crashlytics plugin (for Android Studio and IntelliJ)
  61. com_crashlytics_export_strings.xml
  62. crashlytics.properties
  63. crashlytics-build.properties
  64. fabric.properties
  65. # Editor-based Rest Client
  66. .idea/httpRequests
  67. # Android studio 3.1+ serialized cache file
  68. .idea/caches/build_file_checksums.ser
  69. ### macOS template
  70. # General
  71. .AppleDouble
  72. .LSOverride
  73. # Icon must end with two \r
  74. Icon
  75. # Thumbnails
  76. ._*
  77. # Files that might appear in the root of a volume
  78. .DocumentRevisions-V100
  79. .fseventsd
  80. .Spotlight-V100
  81. .TemporaryItems
  82. .Trashes
  83. .VolumeIcon.icns
  84. .com.apple.timemachine.donotpresent
  85. # Directories potentially created on remote AFP share
  86. .AppleDB
  87. .AppleDesktop
  88. Network Trash Folder
  89. Temporary Items
  90. .apdisk
  91. ### Go template
  92. # Binaries for programs and plugins
  93. *.exe
  94. *.exe~
  95. *.dll
  96. *.so
  97. *.dylib
  98. # Test binary, built with `go test -c`
  99. *.test
  100. # Output of the go coverage tool, specifically when used with LiteIDE
  101. *.out
  102. # Dependency directories (remove the comment below to include it)
  103. # vendor/
  104. speedtest.db
  105. .idea/