.gitignore 2.1 KB

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