.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # ---> Go
  2. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  3. *.o
  4. *.a
  5. *.so
  6. # Folders
  7. _obj
  8. _test
  9. # Architecture specific extensions/prefixes
  10. *.[568vq]
  11. [568vq].out
  12. *.cgo1.go
  13. *.cgo2.c
  14. _cgo_defun.c
  15. _cgo_gotypes.go
  16. _cgo_export.*
  17. _testmain.go
  18. *.exe
  19. *.test
  20. *.prof
  21. # ---> JetBrains
  22. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  23. *.iml
  24. ## Directory-based project format:
  25. .idea/
  26. # if you remove the above rule, at least ignore the following:
  27. # User-specific stuff:
  28. # .idea/workspace.xml
  29. # .idea/tasks.xml
  30. # .idea/dictionaries
  31. # Sensitive or high-churn files:
  32. # .idea/dataSources.ids
  33. # .idea/dataSources.xml
  34. # .idea/sqlDataSources.xml
  35. # .idea/dynamic.xml
  36. # .idea/uiDesigner.xml
  37. # Gradle:
  38. # .idea/gradle.xml
  39. # .idea/libraries
  40. # Mongo Explorer plugin:
  41. # .idea/mongoSettings.xml
  42. ## File-based project format:
  43. *.ipr
  44. *.iws
  45. ## Plugin-specific files:
  46. # IntelliJ
  47. /out/
  48. # mpeltonen/sbt-idea plugin
  49. .idea_modules/
  50. # JIRA plugin
  51. atlassian-ide-plugin.xml
  52. # Crashlytics plugin (for Android Studio and IntelliJ)
  53. com_crashlytics_export_strings.xml
  54. crashlytics.properties
  55. crashlytics-build.properties