.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  2. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  3. ## Directory-based project format:
  4. .idea/
  5. # if you remove the above rule, at least ignore the following:
  6. # User-specific stuff:
  7. # .idea/**/workspace.xml
  8. # .idea/**/tasks.xml
  9. # .idea/dictionaries
  10. # Sensitive or high-churn files:
  11. # .idea/**/dataSources.ids
  12. # .idea/**/dataSources.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. *.iml
  29. # mpeltonen/sbt-idea plugin
  30. .idea_modules/
  31. # JIRA plugin
  32. atlassian-ide-plugin.xml
  33. # Cursive Clojure plugin
  34. .idea/replstate.xml
  35. # Crashlytics plugin (for Android Studio and IntelliJ)
  36. com_crashlytics_export_strings.xml
  37. crashlytics.properties
  38. crashlytics-build.properties
  39. fabric.properties
  40. # Maven
  41. dependency-reduced-pom.xml
  42. *.jar
  43. target/
  44. bin/