.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. # ---> Node.js
  2. node_modules/
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. .npm
  7. .eslintcache
  8. # ---> Dependencies
  9. vendor/
  10. # ---> Build outputs
  11. dist/
  12. build/
  13. *.log
  14. logs/
  15. # ---> Environment
  16. .env
  17. .env.local
  18. .env.*.local
  19. # ---> Package
  20. *.tar.gz
  21. *.zip
  22. # ---> Optional npm cache directory
  23. .npm
  24. # ---> Optional eslint cache
  25. .eslintcache
  26. # ---> Optional REPL history
  27. .node_repl_history
  28. # ---> Output of 'npm pack'
  29. *.tgz
  30. # ---> Yarn
  31. .yarn-integrity
  32. .pnp.*
  33. .yarn/cache
  34. .yarn/unplugged
  35. .yarn/build-state.yml
  36. .yarn/install-state.gz
  37. # ---> JetBrains
  38. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  39. *.iml
  40. ## Directory-based project format:
  41. .idea/
  42. # if you remove the above rule, at least ignore the following:
  43. # User-specific stuff:
  44. # .idea/workspace.xml
  45. # .idea/tasks.xml
  46. # .idea/dictionaries
  47. # Sensitive or high-churn files:
  48. # .idea/dataSources.ids
  49. # .idea/dataSources.xml
  50. # .idea/sqlDataSources.xml
  51. # .idea/dynamic.xml
  52. # .idea/uiDesigner.xml
  53. # Gradle:
  54. # .idea/gradle.xml
  55. # .idea/libraries
  56. # Mongo Explorer plugin:
  57. # .idea/mongoSettings.xml
  58. ## File-based project format:
  59. *.ipr
  60. *.iws
  61. ## Plugin-specific files:
  62. # IntelliJ
  63. /out/
  64. # mpeltonen/sbt-idea plugin
  65. .idea_modules/
  66. # JIRA plugin
  67. atlassian-ide-plugin.xml
  68. # Crashlytics plugin (for Android Studio and IntelliJ)
  69. com_crashlytics_export_strings.xml
  70. crashlytics.properties
  71. crashlytics-build.properties
  72. # ---> VisualStudioCode
  73. .settings
  74. # ---> macOS
  75. .DS_Store
  76. .AppleDouble
  77. .LSOverride
  78. # Icon must end with two \r
  79. Icon
  80. # Thumbnails
  81. ._*
  82. # Files that might appear in the root of a volume
  83. .DocumentRevisions-V100
  84. .fseventsd
  85. .Spotlight-V100
  86. .TemporaryItems
  87. .Trashes
  88. .VolumeIcon.icns
  89. # Directories potentially created on remote AFP share
  90. .AppleDB
  91. .AppleDesktop
  92. Network Trash Folder
  93. Temporary Items
  94. .apdisk
  95. # ---> Windows
  96. # Windows image file caches
  97. Thumbs.db
  98. ehthumbs.db
  99. # Folder config file
  100. Desktop.ini
  101. # Recycle Bin used on file shares
  102. $RECYCLE.BIN/
  103. # Windows Installer files
  104. *.cab
  105. *.msi
  106. *.msm
  107. *.msp
  108. # Windows shortcuts
  109. *.lnk