.gitignore 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # ---> JetBrains
  2. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  3. *.iml
  4. ## Directory-based project format:
  5. .idea/
  6. # if you remove the above rule, at least ignore the following:
  7. # User-specific stuff:
  8. # .idea/workspace.xml
  9. # .idea/tasks.xml
  10. # .idea/dictionaries
  11. # Sensitive or high-churn files:
  12. # .idea/dataSources.ids
  13. # .idea/dataSources.xml
  14. # .idea/sqlDataSources.xml
  15. # .idea/dynamic.xml
  16. # .idea/uiDesigner.xml
  17. # Gradle:
  18. # .idea/gradle.xml
  19. # .idea/libraries
  20. # Mongo Explorer plugin:
  21. # .idea/mongoSettings.xml
  22. ## File-based project format:
  23. *.ipr
  24. *.iws
  25. ## Plugin-specific files:
  26. # IntelliJ
  27. /out/
  28. # mpeltonen/sbt-idea plugin
  29. .idea_modules/
  30. # JIRA plugin
  31. atlassian-ide-plugin.xml
  32. # Crashlytics plugin (for Android Studio and IntelliJ)
  33. com_crashlytics_export_strings.xml
  34. crashlytics.properties
  35. crashlytics-build.properties
  36. # ---> Gradle
  37. .gradle
  38. build/
  39. # Ignore Gradle GUI config
  40. gradle-app.setting
  41. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  42. !gradle-wrapper.jar
  43. # ---> Java
  44. *.class
  45. # Mobile Tools for Java (J2ME)
  46. .mtj.tmp/
  47. # Package Files #
  48. *.jar
  49. *.war
  50. *.ear
  51. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  52. hs_err_pid*
  53. # ---> VisualStudioCode
  54. .settings
  55. # ---> GitBook
  56. # Node rules:
  57. ## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  58. .grunt
  59. ## Dependency directory
  60. ## Commenting this out is preferred by some people, see
  61. ## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
  62. node_modules
  63. # Book build output
  64. _book
  65. # eBook build output
  66. *.epub
  67. *.mobi
  68. *.pdf