.gitignore 2.1 KB

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