1
0

.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. # ---> Composer
  37. composer.phar
  38. vendor/
  39. # Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
  40. # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
  41. # composer.lock
  42. # ---> macOS
  43. .DS_Store
  44. .AppleDouble
  45. .LSOverride
  46. # Icon must end with two \r
  47. Icon
  48. # Thumbnails
  49. ._*
  50. # Files that might appear in the root of a volume
  51. .DocumentRevisions-V100
  52. .fseventsd
  53. .Spotlight-V100
  54. .TemporaryItems
  55. .Trashes
  56. .VolumeIcon.icns
  57. # Directories potentially created on remote AFP share
  58. .AppleDB
  59. .AppleDesktop
  60. Network Trash Folder
  61. Temporary Items
  62. .apdisk
  63. # ---> NetBeans
  64. nbproject/private/
  65. build/
  66. nbbuild/
  67. dist/
  68. nbdist/
  69. nbactions.xml
  70. nb-configuration.xml
  71. .nb-gradle/