Personal Dashboard

.gitignore 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. # Created by https://www.gitignore.io/api/osx,node,linux,emacs,windows,webstorm,visualstudiocode
  2. ### Emacs ###
  3. # -*- mode: gitignore; -*-
  4. *~
  5. \#*\#
  6. /.emacs.desktop
  7. /.emacs.desktop.lock
  8. *.elc
  9. auto-save-list
  10. tramp
  11. .\#*
  12. # Org-mode
  13. .org-id-locations
  14. *_archive
  15. # flymake-mode
  16. *_flymake.*
  17. # eshell files
  18. /eshell/history
  19. /eshell/lastdir
  20. # elpa packages
  21. /elpa/
  22. # reftex files
  23. *.rel
  24. # AUCTeX auto folder
  25. /auto/
  26. # cask packages
  27. .cask/
  28. dist/
  29. # Flycheck
  30. flycheck_*.el
  31. # server auth directory
  32. /server/
  33. # projectiles files
  34. .projectile
  35. # directory configuration
  36. .dir-locals.el
  37. ### Linux ###
  38. # temporary files which can be created if a process still has a handle open of a deleted file
  39. .fuse_hidden*
  40. # KDE directory preferences
  41. .directory
  42. # Linux trash folder which might appear on any partition or disk
  43. .Trash-*
  44. # .nfs files are created when an open file is removed but is still being accessed
  45. .nfs*
  46. ### Node ###
  47. # Logs
  48. logs
  49. *.log
  50. npm-debug.log*
  51. yarn-debug.log*
  52. yarn-error.log*
  53. # Runtime data
  54. pids
  55. *.pid
  56. *.seed
  57. *.pid.lock
  58. # Directory for instrumented libs generated by jscoverage/JSCover
  59. lib-cov
  60. # Coverage directory used by tools like istanbul
  61. coverage
  62. # nyc test coverage
  63. .nyc_output
  64. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  65. .grunt
  66. # Bower dependency directory (https://bower.io/)
  67. bower_components
  68. # node-waf configuration
  69. .lock-wscript
  70. # Compiled binary addons (http://nodejs.org/api/addons.html)
  71. build/Release
  72. # Dependency directories
  73. node_modules/
  74. jspm_packages/
  75. # Typescript v1 declaration files
  76. typings/
  77. # Optional npm cache directory
  78. .npm
  79. # Optional eslint cache
  80. .eslintcache
  81. # Optional REPL history
  82. .node_repl_history
  83. # Output of 'npm pack'
  84. *.tgz
  85. # Yarn Integrity file
  86. .yarn-integrity
  87. # dotenv environment variables file
  88. .env
  89. ### OSX ###
  90. *.DS_Store
  91. .AppleDouble
  92. .LSOverride
  93. # Icon must end with two \r
  94. Icon
  95. # Thumbnails
  96. ._*
  97. # Files that might appear in the root of a volume
  98. .DocumentRevisions-V100
  99. .fseventsd
  100. .Spotlight-V100
  101. .TemporaryItems
  102. .Trashes
  103. .VolumeIcon.icns
  104. .com.apple.timemachine.donotpresent
  105. # Directories potentially created on remote AFP share
  106. .AppleDB
  107. .AppleDesktop
  108. Network Trash Folder
  109. Temporary Items
  110. .apdisk
  111. ### VisualStudioCode ###
  112. .vscode/*
  113. !.vscode/settings.json
  114. !.vscode/tasks.json
  115. !.vscode/launch.json
  116. !.vscode/extensions.json
  117. ### WebStorm ###
  118. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  119. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  120. # User-specific stuff:
  121. .idea/**/workspace.xml
  122. .idea/**/tasks.xml
  123. .idea/dictionaries
  124. # Sensitive or high-churn files:
  125. .idea/**/dataSources/
  126. .idea/**/dataSources.ids
  127. .idea/**/dataSources.xml
  128. .idea/**/dataSources.local.xml
  129. .idea/**/sqlDataSources.xml
  130. .idea/**/dynamic.xml
  131. .idea/**/uiDesigner.xml
  132. # Gradle:
  133. .idea/**/gradle.xml
  134. .idea/**/libraries
  135. # CMake
  136. cmake-build-debug/
  137. # Mongo Explorer plugin:
  138. .idea/**/mongoSettings.xml
  139. ## File-based project format:
  140. *.iws
  141. ## Plugin-specific files:
  142. # IntelliJ
  143. /out/
  144. # mpeltonen/sbt-idea plugin
  145. .idea_modules/
  146. # JIRA plugin
  147. atlassian-ide-plugin.xml
  148. # Cursive Clojure plugin
  149. .idea/replstate.xml
  150. # Crashlytics plugin (for Android Studio and IntelliJ)
  151. com_crashlytics_export_strings.xml
  152. crashlytics.properties
  153. crashlytics-build.properties
  154. fabric.properties
  155. ### WebStorm Patch ###
  156. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  157. # *.iml
  158. # modules.xml
  159. # .idea/misc.xml
  160. # *.ipr
  161. # Sonarlint plugin
  162. .idea/sonarlint
  163. ### Windows ###
  164. # Windows thumbnail cache files
  165. Thumbs.db
  166. ehthumbs.db
  167. ehthumbs_vista.db
  168. # Folder config file
  169. Desktop.ini
  170. # Recycle Bin used on file shares
  171. $RECYCLE.BIN/
  172. # Windows Installer files
  173. *.cab
  174. *.msi
  175. *.msm
  176. *.msp
  177. # Windows shortcuts
  178. *.lnk
  179. # End of https://www.gitignore.io/api/osx,node,linux,emacs,windows,webstorm,visualstudiocode