.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #/////////////////////////////////////////////////////////////////////////////
  2. # Fireball Projects
  3. #/////////////////////////////////////////////////////////////////////////////
  4. /library/
  5. /temp/
  6. /local/
  7. /output/
  8. #/////////////////////////////////////////////////////////////////////////////
  9. # npm files
  10. #/////////////////////////////////////////////////////////////////////////////
  11. npm-debug.log
  12. node_modules/
  13. #/////////////////////////////////////////////////////////////////////////////
  14. # Logs and databases
  15. #/////////////////////////////////////////////////////////////////////////////
  16. *.log
  17. *.sql
  18. *.sqlite
  19. #/////////////////////////////////////////////////////////////////////////////
  20. # files for debugger
  21. #/////////////////////////////////////////////////////////////////////////////
  22. *.sln
  23. *.csproj
  24. *.pidb
  25. *.unityproj
  26. *.suo
  27. #/////////////////////////////////////////////////////////////////////////////
  28. # OS generated files
  29. #/////////////////////////////////////////////////////////////////////////////
  30. .DS_Store
  31. ehthumbs.db
  32. Thumbs.db
  33. #/////////////////////////////////////////////////////////////////////////////
  34. # WebStorm files
  35. #/////////////////////////////////////////////////////////////////////////////
  36. .idea/
  37. #//////////////////////////
  38. # VS Code files
  39. #//////////////////////////
  40. .vscode/