.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .DS_Store
  2. node_modules
  3. #/dist
  4. # local env files
  5. .env.local
  6. .env.*.local
  7. # Log files
  8. npm-debug.log*
  9. yarn-debug.log*
  10. yarn-error.log*
  11. # Editor directories and files
  12. .idea
  13. .vscode
  14. *.suo
  15. *.ntvs*
  16. *.njsproj
  17. *.sln
  18. *.sw*
  19. # ---> Actionscript
  20. # Build and Release Folders
  21. bin/
  22. bin-debug/
  23. bin-release/
  24. # Other files and folders
  25. .settings/
  26. # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
  27. # should NOT be excluded as they contain compiler settings and other important
  28. # information for Eclipse / Flash Builder.
  29. # ---> Gradle
  30. .gradle
  31. build/
  32. # Ignore Gradle GUI config
  33. gradle-app.setting
  34. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  35. !gradle-wrapper.jar
  36. # ---> Node
  37. # Logs
  38. logs
  39. *.log
  40. npm-debug.log*
  41. # Runtime data
  42. pids
  43. *.pid
  44. *.seed
  45. # Directory for instrumented libs generated by jscoverage/JSCover
  46. lib-cov
  47. # Coverage directory used by tools like istanbul
  48. coverage
  49. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  50. .grunt
  51. # node-waf configuration
  52. .lock-wscript
  53. # Compiled binary addons (http://nodejs.org/api/addons.html)
  54. build/Release
  55. # Dependency directory
  56. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  57. node_modules
  58. # ---> Vim
  59. [._]*.s[a-w][a-z]
  60. [._]s[a-w][a-z]
  61. *.un~
  62. Session.vim
  63. .netrwhist
  64. *~
  65. # ---> Xcode
  66. # Xcode
  67. #
  68. # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
  69. ## Build generated
  70. build/
  71. DerivedData
  72. ## Various settings
  73. *.pbxuser
  74. !default.pbxuser
  75. *.mode1v3
  76. !default.mode1v3
  77. *.mode2v3
  78. !default.mode2v3
  79. *.perspectivev3
  80. !default.perspectivev3
  81. xcuserdata
  82. ## Other
  83. *.xccheckout
  84. *.moved-aside
  85. *.xcuserstate
  86. # ---> macOS
  87. .DS_Store
  88. .AppleDouble
  89. .LSOverride
  90. # Icon must end with two \r
  91. Icon
  92. # Thumbnails
  93. ._*
  94. # Files that might appear in the root of a volume
  95. .DocumentRevisions-V100
  96. .fseventsd
  97. .Spotlight-V100
  98. .TemporaryItems
  99. .Trashes
  100. .VolumeIcon.icns
  101. # Directories potentially created on remote AFP share
  102. .AppleDB
  103. .AppleDesktop
  104. Network Trash Folder
  105. Temporary Items
  106. .apdisk