.gitignore 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
  2. # Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,composer
  3. # Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,composer
  4. ### Composer ###
  5. composer.phar
  6. /vendor/
  7. # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
  8. # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
  9. # composer.lock
  10. ### VisualStudioCode ###
  11. .vscode/*
  12. !.vscode/settings.json
  13. !.vscode/tasks.json
  14. !.vscode/launch.json
  15. !.vscode/extensions.json
  16. !.vscode/*.code-snippets
  17. # Local History for Visual Studio Code
  18. .history/
  19. # Built Visual Studio Code Extensions
  20. *.vsix
  21. ### VisualStudioCode Patch ###
  22. # Ignore all local history of files
  23. .history
  24. .ionide
  25. ### Windows ###
  26. # Windows thumbnail cache files
  27. Thumbs.db
  28. Thumbs.db:encryptable
  29. ehthumbs.db
  30. ehthumbs_vista.db
  31. # Dump file
  32. *.stackdump
  33. # Folder config file
  34. [Dd]esktop.ini
  35. # Recycle Bin used on file shares
  36. $RECYCLE.BIN/
  37. # Windows Installer files
  38. *.cab
  39. *.msi
  40. *.msix
  41. *.msm
  42. *.msp
  43. # Windows shortcuts
  44. *.lnk
  45. # End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,composer
  46. # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)