.gitignore 729 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # This file is used for Git repositories to specify intentionally untracked files that Git should ignore.
  2. # If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore
  3. # For useful gitignore templates see: https://github.com/github/gitignore
  4. # Salesforce cache
  5. .sf/
  6. .sfdx/
  7. .localdevserver/
  8. deploy-options.json
  9. # LWC VSCode autocomplete
  10. **/lwc/jsconfig.json
  11. # LWC Jest coverage reports
  12. coverage/
  13. # Logs
  14. logs
  15. *.log
  16. npm-debug.log*
  17. yarn-debug.log*
  18. yarn-error.log*
  19. # Dependency directories
  20. node_modules/
  21. # Eslint cache
  22. .eslintcache
  23. # MacOS system files
  24. .DS_Store
  25. # Windows system files
  26. Thumbs.db
  27. ehthumbs.db
  28. [Dd]esktop.ini
  29. $RECYCLE.BIN/
  30. # Local environment variables
  31. .env