.gitignore 1.8 KB

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