.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. ### Intellij+all ###
  2. # User-specific stuff
  3. .idea/*
  4. # mpeltonen/sbt-idea plugin
  5. .idea_modules/
  6. ### macOS ###
  7. # General
  8. .DS_Store
  9. .AppleDouble
  10. .LSOverride
  11. ### Node ###
  12. # Logs
  13. logs
  14. *.log
  15. npm-debug.log*
  16. yarn-debug.log*
  17. yarn-error.log*
  18. lerna-debug.log*
  19. # Dependency directories
  20. node_modules/
  21. # TypeScript v1 declaration files
  22. typings/
  23. # TypeScript cache
  24. *.tsbuildinfo
  25. # Optional npm cache directory
  26. .npm
  27. # Optional eslint cache
  28. .eslintcache
  29. # Optional stylelint cache
  30. .stylelintcache
  31. # Output of 'npm pack'
  32. *.tgz
  33. # Yarn Integrity file
  34. .yarn-integrity
  35. # dotenv environment variables file
  36. .env.test
  37. .env*.local
  38. # parcel-bundler cache (https://parceljs.org/)
  39. .cache
  40. .parcel-cache
  41. # Next.js build output
  42. .next
  43. # Nuxt.js build / generate output
  44. .nuxt
  45. dist
  46. # Gatsby files
  47. .cache/
  48. # Comment in the public line in if your project uses Gatsby and not Next.js
  49. # https://nextjs.org/blog/next-9-1#public-directory-support
  50. # public
  51. # vuepress build output
  52. .vuepress/dist
  53. # Serverless directories
  54. .serverless/
  55. # FuseBox cache
  56. .fusebox/
  57. # DynamoDB Local files
  58. .dynamodb/
  59. # TernJS port file
  60. .tern-port
  61. # Stores VSCode versions used for testing VSCode extensions
  62. .vscode-test
  63. ### vscode ###
  64. .vscode/*
  65. !.vscode/settings.json
  66. !.vscode/tasks.json
  67. !.vscode/launch.json
  68. !.vscode/extensions.json
  69. *.code-workspace
  70. ### Vue ###
  71. # gitignore template for Vue.js projects
  72. #
  73. # Recommended template: Node.gitignore
  74. ### Windows ###
  75. # Windows thumbnail cache files
  76. Thumbs.db
  77. Thumbs.db:encryptable
  78. ehthumbs.db
  79. ehthumbs_vista.db
  80. # Dump file
  81. *.stackdump
  82. # Folder config file
  83. [Dd]esktop.ini
  84. # Recycle Bin used on file shares
  85. $RECYCLE.BIN/
  86. # Windows Installer files
  87. *.cab
  88. *.msi
  89. *.msix
  90. *.msm
  91. *.msp
  92. # Windows shortcuts
  93. *.lnk
  94. # End of https://www.toptal.com/developers/gitignore/api/vue,node,macos,windows,linux,vscode,intellij+all
  95. .turbo