.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. ####################################
  2. ## OSX
  3. .DS_Store
  4. .AppleDouble
  5. .LSOverride
  6. # Icon must end with two \r
  7. Icon
  8. # Thumbnails
  9. ._*
  10. # Files that might appear in the root of a volume
  11. .DocumentRevisions-V100
  12. .fseventsd
  13. .Spotlight-V100
  14. .TemporaryItems
  15. .Trashes
  16. .VolumeIcon.icns
  17. # Directories potentially created on remote AFP share
  18. .AppleDB
  19. .AppleDesktop
  20. Network Trash Folder
  21. Temporary Items
  22. .apdisk
  23. ####################################
  24. ## editors (webstorm etc)
  25. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion
  26. *.iml
  27. ## Directory-based project format:
  28. .idea/
  29. # if you remove the above rule, at least ignore the following:
  30. # User-specific stuff:
  31. # .idea/workspace.xml
  32. # .idea/tasks.xml
  33. # .idea/dictionaries
  34. # Sensitive or high-churn files:
  35. # .idea/dataSources.ids
  36. # .idea/dataSources.xml
  37. # .idea/sqlDataSources.xml
  38. # .idea/dynamic.xml
  39. # .idea/uiDesigner.xml
  40. # Gradle:
  41. # .idea/gradle.xml
  42. # .idea/libraries
  43. # Mongo Explorer plugin:
  44. # .idea/mongoSettings.xml
  45. ## File-based project format:
  46. *.ipr
  47. *.iws
  48. ## Plugin-specific files:
  49. # IntelliJ
  50. /out/
  51. # mpeltonen/sbt-idea plugin
  52. .idea_modules/
  53. # JIRA plugin
  54. atlassian-ide-plugin.xml
  55. # Crashlytics plugin (for Android Studio and IntelliJ)
  56. com_crashlytics_export_strings.xml
  57. crashlytics.properties
  58. crashlytics-build.properties
  59. # cache files for sublime text
  60. *.tmlanguage.cache
  61. *.tmPreferences.cache
  62. *.stTheme.cache
  63. # workspace files are user-specific
  64. *.sublime-workspace
  65. # project files should be checked into the repository, unless a significant
  66. # proportion of contributors will probably not be using SublimeText
  67. # *.sublime-project
  68. # sftp configuration file
  69. sftp-config.json
  70. ####################################
  71. ## node.js
  72. # Logs
  73. logs
  74. *.log
  75. # Runtime data
  76. pids
  77. *.pid
  78. *.seed
  79. # Directory for instrumented libs generated by jscoverage/JSCover
  80. lib-cov
  81. # Coverage directory used by tools like istanbul
  82. coverage
  83. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  84. .grunt
  85. # node-waf configuration
  86. .lock-wscript
  87. # Compiled binary addons (http://nodejs.org/api/addons.html)
  88. build/Release
  89. # Dependency directory
  90. # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
  91. node_modules
  92. ####################################
  93. ## client-side JS
  94. bower_components
  95. ## generator-angular-famous-ionic
  96. # Logs
  97. logs
  98. *.log
  99. # Runtime data
  100. pids
  101. *.pid
  102. *.seed
  103. # Directory for instrumented libs generated by jscoverage/JSCover
  104. lib-cov
  105. # Coverage directory used by tools like istanbul
  106. coverage/
  107. # Reports directory used by tools like protractor
  108. reports/
  109. # Temp directories
  110. temp/
  111. test/tmp
  112. test/temp
  113. # Other temp
  114. .sass-cache
  115. .grunt
  116. # Build
  117. .tmp
  118. *.sublime-project
  119. ####################################