.gitignore 1.3 KB

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